/**
* Template Name: BizPage
* Template URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
	--default-font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
	--heading-font: "Montserrat", sans-serif;
	--nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--background-color: #ffffff;
	/* Background color for the entire website, including individual sections */
	--default-color: #5b6673;
	/* Default color used for the majority of the text content across the entire website */
	--heading-color: #102235;
	/* Color for headings, subheadings and title throughout the website */
	--accent-color: #165578;
	/* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--surface-color: #ffffff;
	/* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color: #ffffff;
	/* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
	--nav-color: #ffffff;
	/* The default color of the main navmenu links */
	--nav-hover-color: #8fd3ff;
	/* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff;
	/* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff;
	/* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #666666;
	/* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #165578;
	/* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
	--background-color: #f7f7f7;
	--surface-color: #ffffff;
}

.dark-background {
	--background-color: #04070d;
	--default-color: rgba(223, 232, 240, 0.82);
	--heading-color: #ffffff;
	--surface-color: #0b1420;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	--background-color: rgba(0, 0, 0, 0);
	--default-color: #ffffff;
	--heading-color: #ffffff;
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 15px 0;
	transition: all 0.5s;
	z-index: 997;
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 32px;
	margin-right: 8px;
}

.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 700;
	color: var(--heading-color);
	border-left: 4px solid var(--accent-color);
	padding-left: 8px;
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
	--background-color: rgba(0, 0, 0, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-color);
		padding: 18px 15px;
		font-size: 13px;
		font-family: var(--nav-font);
		font-weight: 600;
		text-transform: uppercase;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu li:last-child a {
		padding-right: 18px;
	}

	.navmenu li:hover>a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-hover-color);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover>a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown>.dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu>ul {
		display: block;
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: 14px;
	position: relative;
}

.footer.dark-background {
	background: linear-gradient(180deg, #0B0F14 0%, #080B10 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .footer-top {
	padding-top: 50px;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
	line-height: 1;
	margin-bottom: 25px;
}

.footer .footer-about .logo img {
	max-height: 40px;
	margin-right: 6px;
}

.footer .footer-about .logo span {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 1px;
	font-family: var(--heading-font);
	color: var(--heading-color);
}

.footer .footer-about p {
	font-size: 14px;
	font-family: var(--heading-font);
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 16px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-right: 10px;
	transition: 0.3s;
}

.footer .social-links a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-links {
	margin-bottom: 30px;
}

.footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-links ul i {
	padding-right: 2px;
	font-size: 12px;
	line-height: 0;
}

.footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-links ul a {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	display: inline-block;
	line-height: 1;
}

.footer .footer-links ul a:hover {
	color: var(--accent-color);
}

.footer .footer-contact p {
	margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
	margin-top: 30px;
	margin-bottom: 15px;
	padding: 6px 8px;
	position: relative;
	border-radius: 4px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
	display: flex;
	background-color: var(--background-color);
	transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
	border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
	border: 0;
	padding: 4px;
	width: 100%;
	background-color: var(--background-color);
	color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
	outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
	border: 0;
	font-size: 16px;
	padding: 0 20px;
	margin: -7px -8px -7px 0;
	background: var(--accent-color);
	color: var(--contrast-color);
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
	padding: 25px 0;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
	margin-bottom: 0;
}

.footer .credits {
	margin-top: 6px;
	font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: #0B0F14;
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ffffff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 96px;
	bottom: 24px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 44px;
	height: 44px;
	border-radius: 14px;
	transition: all 0.3s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Floating WhatsApp
--------------------------------------------------------------*/
.floating-whatsapp {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 2147483000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	min-width: 60px;
	min-height: 60px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(180deg, #27e06f 0%, #18b956 100%);
	color: #ffffff;
	text-decoration: none;
	line-height: 1;
	font-size: 0;
	vertical-align: middle;
	box-sizing: border-box;
	flex: none;
	isolation: isolate;
	overflow: hidden;
	appearance: none;
	-webkit-appearance: none;
	box-shadow:
		0 14px 30px rgba(7, 94, 44, 0.26),
		0 4px 12px rgba(7, 94, 44, 0.2);
	transform: translate3d(0, 0, 0);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
	animation: floating-whatsapp-pulse 3.2s ease-in-out infinite;
}

body>.floating-whatsapp {
	position: fixed;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
	color: #ffffff;
	text-decoration: none;
	transform: translate3d(0, -2px, 0) scale(1.04);
	box-shadow:
		0 18px 34px rgba(7, 94, 44, 0.3),
		0 6px 14px rgba(7, 94, 44, 0.22);
	filter: saturate(1.04);
}

.floating-whatsapp:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.95);
	outline-offset: 3px;
}

.floating-whatsapp__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	min-width: 26px;
	min-height: 26px;
	margin: 0;
	padding: 0;
	flex: none;
	line-height: 0;
	pointer-events: none;
}

.floating-whatsapp__icon svg,
.floating-whatsapp__icon img {
	display: block;
	width: 26px;
	height: 26px;
	min-width: 26px;
	min-height: 26px;
	max-width: 26px;
	max-height: 26px;
	margin: 0;
	padding: 0;
	flex: none;
	color: currentColor;
	fill: currentColor;
}

@keyframes floating-whatsapp-pulse {

	0%,
	100% {
		box-shadow:
			0 14px 30px rgba(7, 94, 44, 0.26),
			0 0 0 0 rgba(37, 211, 102, 0);
	}

	50% {
		box-shadow:
			0 16px 32px rgba(7, 94, 44, 0.28),
			0 0 0 10px rgba(37, 211, 102, 0.12);
	}
}

@media (max-width: 767px) {
	.floating-whatsapp {
		right: 16px;
		bottom: 16px;
		width: 56px;
		height: 56px;
		min-width: 56px;
		min-height: 56px;
	}

	.floating-whatsapp__icon,
	.floating-whatsapp__icon svg,
	.floating-whatsapp__icon img {
		width: 24px;
		height: 24px;
		min-width: 24px;
		min-height: 24px;
		max-width: 24px;
		max-height: 24px;
	}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: var(--default-color);
	background-color: var(--background-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 160px 0 80px 0;
	text-align: center;
	position: relative;
}

.page-title:before {
	content: "";
	background-color: color-mix(in srgb, var(--background-color), transparent 50%);
	position: absolute;
	inset: 0;
}

.page-title h1 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
	padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 85px;
	overflow: clip;
}

@media (max-width: 1199px) {

	section,
	.section {
		scroll-margin-top: 66px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-title h2:before {
	content: "";
	position: absolute;
	display: block;
	width: 160px;
	height: 1px;
	background: color-mix(in srgb, var(--default-color), transparent 60%);
	left: 0;
	right: 0;
	bottom: 1px;
	margin: auto;
}

.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 3px;
	background: var(--accent-color);
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	padding: 0;
}

.hero .carousel {
	width: 100%;
	min-height: 100vh;
	padding: 0;
	margin: 0;
	background-color: var(--background-color);
	position: relative;
}

.hero img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero .carousel-item {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.hero .carousel-item:before {
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 30%);
	position: absolute;
	inset: 0;
	z-index: 2;
}

.hero .carousel-item::before {
	content: "";
	background-color: color-mix(in srgb, var(--background-color), transparent 30%);
	position: absolute;
	inset: 0;
}

.hero .carousel-container {
	position: absolute;
	inset: 90px 64px 64px 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 3;
}

.hero h2 {
	margin-bottom: 30px;
	font-size: 48px;
	font-weight: 700;
	animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
	.hero h2 {
		font-size: 30px;
	}
}

.hero p {
	animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

	.hero h2,
	.hero p {
		max-width: 60%;
	}
}

.hero .btn-get-started {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 32px;
	border-radius: 50px;
	transition: 0.5s;
	margin: 10px;
	animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
	width: 10%;
	transition: 0.3s;
	opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
	opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
	opacity: 0.9;
}

@media (min-width: 1024px) {

	.hero .carousel-control-prev,
	.hero .carousel-control-next {
		width: 5%;
	}
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
	background: none;
	font-size: 32px;
	line-height: 1;
}

.hero .carousel-indicators {
	list-style: none;
}

.hero .carousel-indicators li {
	cursor: pointer;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
	padding: 40px 0 10px 0;
}

.featured-services .service-item {
	position: relative;
	height: 100%;
	margin-bottom: 30px;
}

.featured-services .service-item .icon {
	margin-right: 20px;
}

.featured-services .service-item .icon i {
	color: var(--accent-color);
	font-size: 40px;
	line-height: 0;
	transition: 0.3s;
}

.featured-services .service-item:hover .icon i {
	color: var(--accent-color);
}

.featured-services .service-item .title {
	color: var(--heading-color);
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 20px;
	transition: 0.3s;
}

.featured-services .service-item .description {
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-bottom: 10px;
}

.featured-services .service-item .readmore {
	display: flex;
	align-items: center;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	transition: 0.3s;
	font-weight: 700;
	font-size: 14px;
}

.featured-services .service-item .readmore i {
	margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
	text-transform: uppercase;
	margin-bottom: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
	font-size: 2rem;
	font-weight: 700;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding-bottom: 10px;
}

.about .content ul i {
	font-size: 1.25rem;
	margin-right: 4px;
	color: var(--accent-color);
}

.about .content p:last-child {
	margin-bottom: 0;
}

.about .content .read-more {
	background: var(--accent-color);
	color: var(--contrast-color);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	padding: 12px 24px;
	border-radius: 5px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.about .content .read-more i {
	font-size: 18px;
	margin-left: 5px;
	line-height: 0;
	transition: 0.3s;
}

.about .content .read-more:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
	padding-right: 19px;
}

.about .content .read-more:hover i {
	margin-left: 10px;
}

.about .about-images img {
	border-radius: 10px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
	padding: 30px;
	width: 100%;
}

.stats .stats-item span {
	font-size: 48px;
	display: block;
	color: var(--accent-color);
	font-weight: 700;
}

.stats .stats-item p {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	padding: 0;
	margin: 0;
	font-family: var(--heading-font);
	font-size: 15px;
	font-weight: 600;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
	background-color: var(--surface-color);
	padding: 30px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	transition: 0.3s;
}

.services .service-item .icon {
	font-size: 36px;
	line-height: 0;
	margin-right: 30px;
	color: var(--accent-color);
}

.services .service-item .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 20px;
}

.services .service-item .title a {
	color: var(--heading-color);
}

.services .service-item .description {
	line-height: 24px;
	font-size: 14px;
	margin: 0;
}

.services .service-item:hover {
	border-color: var(--accent-color);
}

.services .service-item:hover .title a {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
	padding: 80px 0;
	position: relative;
	clip-path: inset(0);
}

.call-to-action img {
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.call-to-action:before {
	content: "";
	background: color-mix(in srgb, var(--background-color), transparent 50%);
	position: absolute;
	inset: 0;
	z-index: 2;
}

.call-to-action .container {
	position: relative;
	z-index: 3;
}

.call-to-action h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--default-color);
}

.call-to-action p {
	color: var(--default-color);
}

.call-to-action .cta-btn {
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 40px;
	border-radius: 5px;
	transition: 0.5s;
	margin: 10px;
	border: 2px solid var(--contrast-color);
	color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
	background: var(--accent-color);
	border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
}

.portfolio .portfolio-filters li {
	cursor: pointer;
	display: inline-block;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	margin: 0 10px;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
	color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
	margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
	margin-right: 0;
}

@media (max-width: 575px) {
	.portfolio .portfolio-filters li {
		font-size: 14px;
		margin: 0 5px;
	}
}

.portfolio .portfolio-item {
	position: relative;
}

.portfolio .portfolio-item .portfolio-info {
	background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
	opacity: 0;
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 0;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
	font-size: 18px;
	font-weight: 600;
	padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	font-size: 14px;
	margin-bottom: 0;
	padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
	position: absolute;
	right: 50px;
	font-size: 24px;
	top: calc(50% - 14px);
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	transition: 0.3s;
	line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
	color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
	right: 14px;
	font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
	opacity: 1;
	bottom: 20px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
	margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .testimonial-item {
	text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
	width: 120px;
	border-radius: 50%;
	border: 4px solid var(--background-color);
	margin: 0 auto;
}

.testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
	margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: color-mix(in srgb, var(--accent-color), transparent 50%);
	font-size: 26px;
	line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
	height: auto;
}

.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	opacity: 1;
	background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

@media (min-width: 992px) {
	.testimonials .testimonial-item p {
		width: 80%;
	}
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
	--default-color: #ffffff;
}

.team .member {
	text-align: center;
	position: relative;
	height: 100%;
}

.team .member .member-info {
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	inset: 0;
	transition: 0.2s;
}

.team .member .member-info-content {
	margin-top: -50px;
	transition: margin 0.2s;
}

.team .member:hover .member-info {
	background: rgba(0, 0, 0, 0.6);
	opacity: 1;
	transition: 0.4s;
}

.team .member:hover .member-info-content {
	margin-top: 0;
	transition: margin 0.4s;
}

.team .member h4 {
	color: var(--contrast-color);
	font-weight: 700;
	margin-bottom: 2px;
	font-size: 18px;
}

.team .member span {
	font-style: italic;
	display: block;
	font-size: 13px;
}

.team .member .social {
	margin-top: 15px;
}

.team .member .social a {
	transition: 0.3s;
	color: var(--default-color);
}

.team .member .social a:hover {
	color: var(--accent-color);
}

.team .member .social i {
	font-size: 18px;
	margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
	padding: 60px 0 120px 0;
}

.pricing .section-title {
	margin-bottom: 40px;
}

.pricing .pricing-item {
	background-color: var(--surface-color);
	box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
	padding: 60px 40px;
	height: 100%;
	position: relative;
	border-radius: 15px;
}

.pricing h3 {
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 20px;
	text-align: center;
}

.pricing .icon {
	margin: 30px auto 20px auto;
	width: 70px;
	height: 70px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	transform-style: preserve-3d;
}

.pricing .icon i {
	color: var(--background-color);
	font-size: 28px;
	transition: ease-in-out 0.3s;
	line-height: 0;
}

.pricing .icon::before {
	position: absolute;
	content: "";
	height: 86px;
	width: 86px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--accent-color), transparent 80%);
	transition: all 0.3s ease-out 0s;
	transform: translateZ(-1px);
}

.pricing .icon::after {
	position: absolute;
	content: "";
	height: 102px;
	width: 102px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--accent-color), transparent 90%);
	transition: all 0.3s ease-out 0s;
	transform: translateZ(-2px);
}

.pricing h4 {
	font-size: 48px;
	color: var(--accent-color);
	font-weight: 700;
	font-family: var(--heading-font);
	margin-bottom: 25px;
	text-align: center;
}

.pricing h4 sup {
	font-size: 28px;
}

.pricing h4 span {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 18px;
	font-weight: 400;
}

.pricing ul {
	padding: 20px 0;
	list-style: none;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	text-align: left;
	line-height: 20px;
}

.pricing ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.pricing ul i {
	color: #059652;
	font-size: 24px;
	padding-right: 3px;
}

.pricing ul .na {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
	text-decoration: line-through;
}

.pricing .buy-btn {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	display: inline-block;
	padding: 8px 40px 10px 40px;
	border-radius: 50px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
	transition: none;
	font-size: 16px;
	font-weight: 600;
	font-family: var(--heading-font);
	transition: 0.3s;
}

.pricing .buy-btn:hover {
	background-color: var(--accent-color);
	color: var(--contrast-color);
}

.pricing .featured {
	z-index: 10;
	border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
	.pricing .featured {
		transform: scale(1.15);
	}
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
	background-color: var(--surface-color);
	position: relative;
	padding: 20px;
	margin-bottom: 15px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	border-radius: 5px;
	overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
	margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin: 0 30px 0 0;
	transition: 0.3s;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.faq .faq-container .faq-item h3 .num {
	color: var(--accent-color);
	padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
	margin-bottom: 0;
	overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	line-height: 0;
	transition: 0.3s;
	cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
	color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
	transform: rotate(90deg);
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item i {
	font-size: 20px;
	color: var(--accent-color);
	font-size: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
	font-size: 24px;
	font-weight: 700;
	margin: 20px 0;
}

.contact .info-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 14px;
}

@media (min-width: 992px) {
	.contact .info-item.info-item-borders {
		border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
		border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
	}
}

.contact .php-email-form {
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	padding: 30px;
	margin-top: 30px;
}

@media (max-width: 575px) {
	.contact .php-email-form {
		padding: 20px;
	}
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
	font-size: 14px;
	padding: 10px 15px;
	box-shadow: none;
	border-radius: 10px;
	color: #E5E7EB;
	background-color: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
	border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
	color: var(--contrast-color);
	background: var(--accent-color);
	border: 0;
	padding: 10px 30px;
	transition: 0.4s;
	border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Alt5 Homepage Refresh
--------------------------------------------------------------*/
body {
	background: #0B0F14;
}

.section-title h2 {
	font-size: 15px;
	letter-spacing: 0.22em;
	color: var(--accent-color);
}

.section-title p {
	font-size: 2.1rem;
	line-height: 1.2;
	max-width: 760px;
	font-weight: 600;
	color: var(--heading-color);
}

.section-title-left {
	text-align: left;
}

.section-title-left h2:before,
.section-title-left h2:after {
	margin-left: 0;
}

.header {
	--background-color: rgba(8, 11, 16, 0.18);
	padding: 22px 0;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.header .container-fluid.container-xl {
	padding: 14px 20px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(11, 15, 20, 0.88), rgba(11, 15, 20, 0.64));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.header .logo h1 {
	font-size: 28px;
	border-left: 0;
	padding-left: 0;
	letter-spacing: 0.08em;
	font-weight: 800;
	text-transform: uppercase;
}

.header .logo {
	gap: 0;
}

.header .logo .site-brand-mark {
	display: block;
	width: auto;
	height: 78px;
	max-width: 330px;
	object-fit: contain;
	filter:
		drop-shadow(0 8px 22px rgba(3, 12, 22, 0.24)) drop-shadow(0 0 14px rgba(111, 206, 255, 0.08));
}

.scrolled .header {
	--background-color: rgba(8, 11, 16, 0.88);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.scrolled .header .container-fluid.container-xl {
	background: linear-gradient(180deg, rgba(11, 15, 20, 0.97), rgba(11, 15, 20, 0.92));
	border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1200px) {
	.navmenu ul {
		gap: 6px;
	}

	.navmenu a,
	.navmenu a:focus {
		padding: 10px 12px;
		font-size: 11px;
		letter-spacing: 0.08em;
		border-radius: 999px;
		color: rgba(255, 255, 255, 0.84);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		background: rgba(255, 255, 255, 0.08);
	}

	.navmenu .nav-cta a,
	.navmenu .nav-cta a:focus {
		padding: 11px 16px;
		margin-left: 8px;
		color: #fff;
		background: linear-gradient(135deg, #165578 0%, #1f6fa5 100%);
		box-shadow: 0 12px 24px rgba(22, 85, 120, 0.28);
	}

	.navmenu .nav-cta a:hover {
		color: #fff;
		transform: translateY(-1px);
		background: linear-gradient(135deg, #1a6080 0%, #2080b0 100%);
	}
}

.hero-reimagined {
	position: relative;
	overflow: hidden;
	padding: 188px 0 118px;
	background: linear-gradient(180deg, #080B10 0%, #0B0F14 60%, #111827 100%);
}

.hero-reimagined:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 95%);
}

.hero-reimagined:after {
	content: "";
	position: absolute;
	inset: auto 0 -1px;
	height: 180px;
	background: linear-gradient(180deg, rgba(7, 19, 32, 0), rgba(7, 19, 32, 0.32) 45%, rgba(242, 247, 251, 1) 100%);
	z-index: 1;
	pointer-events: none;
}

.hero-reimagined>.container {
	position: relative;
	z-index: 2;
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(28px);
	opacity: 0.18;
}

.hero-orb-one {
	top: 120px;
	right: 12%;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(22, 85, 120, 0.5) 0%, transparent 70%);
}

.hero-orb-two {
	bottom: 40px;
	left: -60px;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle, rgba(22, 85, 120, 0.4) 0%, transparent 70%);
}

.hero-content {
	max-width: 680px;
	padding-right: 24px;
	position: relative;
}

.hero-grid {
	min-height: clamp(560px, 72vh, 720px);
}

.hero-kicker,
.eyebrow,
.cta-kicker,
.panel-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #9CA3AF;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero-content h2 {
	margin: 22px 0 18px;
	max-width: 11ch;
	font-size: clamp(2.9rem, 5.1vw, 5.2rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
	color: #ffffff;
	text-wrap: balance;
}

.hero-description {
	max-width: 58ch;
	font-size: 1.08rem;
	line-height: 1.9;
	letter-spacing: 0.01em;
	color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin: 36px 0 42px;
}

.btn-primary-hero,
.btn-secondary-hero,
.about-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 0 26px;
	border-radius: 18px;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn-primary-hero {
	color: #fff;
	background: linear-gradient(135deg, #165578 0%, #2174a3 55%, #46a8d8 100%);
	box-shadow: 0 22px 40px rgba(8, 40, 58, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary-hero:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 26px 44px rgba(8, 40, 58, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.btn-secondary-hero {
	color: #fff;
	border: 1px solid rgba(164, 221, 255, 0.28);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary-hero:hover {
	color: #fff;
	border-color: rgba(164, 221, 255, 0.45);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
	transform: translateY(-2px);
}

.hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.metric-card {
	position: relative;
	padding: 22px 20px 20px;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
	border: 1px solid rgba(180, 229, 255, 0.14);
	box-shadow: 0 20px 40px rgba(3, 12, 20, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.metric-card:hover {
	transform: translateY(-4px);
	border-color: rgba(180, 229, 255, 0.24);
	box-shadow: 0 28px 52px rgba(3, 12, 20, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.metric-card strong {
	display: block;
	margin-bottom: 12px;
	font-size: 1.5rem;
	color: #fff;
}

.metric-card span {
	display: block;
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.65;
	font-size: 0.94rem;
}

.hero-showcase {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 580px;
	padding: 34px 24px;
	border-radius: 36px;
	background:
		radial-gradient(circle at 50% 18%, rgba(116, 213, 255, 0.14), transparent 34%),
		linear-gradient(180deg, rgba(8, 20, 35, 0.54), rgba(6, 16, 28, 0.28));
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 36px 80px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	isolation: isolate;
}

.hero-showcase:before {
	content: "";
	position: absolute;
	inset: 16px;
	border-radius: 28px;
	border: 1px solid rgba(172, 226, 255, 0.08);
	pointer-events: none;
}

.hero-showcase-glow,
.hero-showcase-grid {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
}

.hero-showcase-glow {
	background:
		radial-gradient(circle at 50% 38%, rgba(115, 212, 255, 0.22), transparent 30%),
		radial-gradient(circle at 80% 18%, rgba(22, 85, 120, 0.34), transparent 28%);
	filter: blur(10px);
	opacity: 0.95;
}

.hero-showcase-grid {
	inset: 28px;
	background-image:
		linear-gradient(rgba(175, 229, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(175, 229, 255, 0.08) 1px, transparent 1px);
	background-size: 34px 34px;
	mask-image: radial-gradient(circle at center, black 42%, transparent 86%);
	opacity: 0.38;
}

.hero-brand-frame {
	position: relative;
	z-index: 2;
	width: min(100%, 410px);
	padding: 24px;
	border-radius: 32px;
	background: linear-gradient(180deg, rgba(10, 28, 47, 0.78), rgba(7, 17, 30, 0.92));
	border: 1px solid rgba(176, 229, 255, 0.18);
	box-shadow:
		0 30px 70px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		inset 0 0 0 1px rgba(68, 167, 214, 0.08);
	backdrop-filter: blur(18px);
	transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.hero-showcase:hover .hero-brand-frame {
	transform: translateY(-6px);
	box-shadow:
		0 36px 86px rgba(0, 0, 0, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		inset 0 0 0 1px rgba(68, 167, 214, 0.1);
}

.hero-brand-chip {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(120, 207, 255, 0.1);
	border: 1px solid rgba(164, 221, 255, 0.18);
	color: #d8f2ff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-brand-stage {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 318px;
	margin: 18px 0 20px;
	border-radius: 28px;
	background:
		radial-gradient(circle at 50% 50%, rgba(74, 177, 226, 0.18), rgba(7, 17, 30, 0.08) 56%, transparent 75%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(191, 236, 255, 0.08);
	overflow: hidden;
}

.hero-brand-ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(176, 229, 255, 0.16);
}

.hero-brand-ring-one {
	width: 280px;
	height: 280px;
	box-shadow: 0 0 44px rgba(62, 167, 218, 0.12), inset 0 0 38px rgba(62, 167, 218, 0.08);
}

.hero-brand-ring-two {
	width: 214px;
	height: 214px;
	border-color: rgba(203, 241, 255, 0.24);
}

.hero-brand-core {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 228px;
	height: 228px;
	border-radius: 34px;
	background:
		radial-gradient(circle at 50% 38%, rgba(80, 192, 242, 0.16), rgba(10, 28, 47, 0.92) 68%),
		linear-gradient(180deg, rgba(12, 36, 58, 0.96), rgba(8, 20, 35, 0.96));
	border: 1px solid rgba(197, 236, 255, 0.16);
	box-shadow:
		0 26px 46px rgba(4, 12, 22, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		inset 0 0 42px rgba(70, 174, 222, 0.08);
}

.hero-brand-logo {
	display: block;
	width: min(100%, 156px);
	height: auto;
	object-fit: contain;
	filter:
		drop-shadow(0 12px 28px rgba(5, 18, 31, 0.42)) drop-shadow(0 0 24px rgba(129, 206, 255, 0.18));
	opacity: 1;
}

.hero-brand-caption {
	display: grid;
	gap: 8px;
}

.hero-brand-caption strong {
	font-size: 1.15rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff;
}

.hero-brand-caption span {
	color: rgba(226, 244, 255, 0.76);
	line-height: 1.75;
	font-size: 0.96rem;
}

.hero-panel,
.hero-mini-card,
.premium-card,
.client-logo-card,
.products-showcase .service-item,
.cta-shell,
.contact-reimagined .info-wrap,
.contact-reimagined .php-email-form,
.about-photo,
.stat-chip {
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.hero-panel,
.hero-mini-card {
	padding: 22px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.08);
}

.hero-panel h3 {
	margin: 16px 0 12px;
	font-size: 1.7rem;
	line-height: 1.15;
	color: #fff;
}

.hero-panel p,
.hero-mini-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.7;
}

.hero-logo-cloud {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 16px 0;
}

.hero-floating-card {
	position: absolute;
	z-index: 3;
	max-width: 230px;
	padding: 18px 18px 16px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(9, 25, 43, 0.88), rgba(9, 21, 36, 0.72));
	border: 1px solid rgba(177, 227, 255, 0.16);
	box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
	animation: heroFloat 6s ease-in-out infinite;
}

.hero-floating-card strong,
.hero-floating-card p {
	margin: 0;
	color: #f4fbff;
	line-height: 1.6;
	font-size: 0.92rem;
}

.hero-floating-card-top {
	top: 42px;
	right: -14px;
}

.hero-floating-card-bottom {
	bottom: 42px;
	left: -12px;
	display: flex;
	align-items: center;
	gap: 12px;
	animation-delay: 1.2s;
}

.hero-floating-label {
	display: inline-block;
	margin-bottom: 10px;
	color: #9bdfff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hero-floating-dot {
	flex: 0 0 12px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: radial-gradient(circle, #84dcff 0%, #2a8bbd 70%, rgba(42, 139, 189, 0) 100%);
	box-shadow: 0 0 18px rgba(132, 220, 255, 0.55);
}

@keyframes heroFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

.logo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 86px;
	padding: 12px;
	border-radius: 20px;
	border: 1px dashed rgba(189, 231, 255, 0.34);
	background: rgba(255, 255, 255, 0.05);
	color: #dcefff;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-align: center;
}

.logo-placeholder.featured {
	grid-column: span 2;
	min-height: 100px;
	background: linear-gradient(135deg, rgba(45, 144, 196, 0.18), rgba(255, 255, 255, 0.06));
}

.software-logos {
	padding: 0 0 28px;
	margin-top: -38px;
	position: relative;
	z-index: 3;
}

.logos-carousel-shell {
	margin: 0 auto;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 34px;
	background: #0F172A;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
	overflow: hidden;
}

.logos-showcase-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 20px;
	align-items: end;
	margin-bottom: 24px;
}

.logos-carousel-intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.logos-carousel-intro h2 {
	margin: 0;
	max-width: 15ch;
	font-size: clamp(1.9rem, 3vw, 2.8rem);
	line-height: 1.08;
}

.logos-kicker {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(22, 85, 120, 0.08);
	color: var(--accent-color);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.logos-carousel-intro p {
	margin: 0;
	max-width: 640px;
	color: #536273;
	line-height: 1.7;
}

.logos-showcase-meta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	flex-wrap: wrap;
}

.logos-meta-chip {
	min-width: 132px;
	padding: 14px 16px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(22, 85, 120, 0.1);
	box-shadow: 0 16px 34px rgba(14, 27, 43, 0.06);
}

.logos-meta-chip strong {
	display: block;
	margin-bottom: 4px;
	color: var(--heading-color);
	font-size: 1rem;
	letter-spacing: 0.04em;
}

.logos-meta-chip span {
	display: block;
	color: #5f7386;
	font-size: 0.85rem;
	line-height: 1.45;
}

.software-logo-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 16px;
}

.software-logo-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 220px;
	padding: 18px;
	border-radius: 24px;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	grid-column: span 3;
	background: #0F172A;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.software-logo-card__glow {
	position: absolute;
	inset: auto -34px -46px auto;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	opacity: 0.7;
	pointer-events: none;
}

.software-logo-card__top,
.software-logo-card__brand,
.software-logo-card__copy {
	position: relative;
	z-index: 1;
}

.software-logo-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.software-logo-card__eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #9CA3AF;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.software-logo-card__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	color: #E5E7EB;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.software-logo-card__brand {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 18px;
}

.software-logo-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 96px;
	padding: 16px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.software-logo-card__copy h3 {
	margin: 0 0 8px;
	font-size: 1.18rem;
}

.software-logo-card__copy p {
	margin: 0;
	color: #9CA3AF;
	line-height: 1.55;
	font-size: 0.94rem;
}

.software-logo-monogram {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(205, 88, 69, 0.18), rgba(231, 125, 57, 0.28));
	color: #b34118;
	font-size: 1.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.software-logo-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 24px 44px rgba(0, 0, 0, 0.36);
}

.software-logo-card:hover .software-logo-card__arrow {
	transform: translate(2px, -2px);
	background: rgba(255, 255, 255, 0.9);
}

.software-logo-image {
	display: block;
	width: 100%;
	max-width: 180px;
	height: auto;
	max-height: 64px;
	object-fit: contain;
	filter: saturate(1.02);
}

.software-logo-card--warm .software-logo-card__glow {
	background: radial-gradient(circle, rgba(236, 111, 78, 0.22) 0%, rgba(236, 111, 78, 0) 70%);
}

.software-logo-card--emerald .software-logo-card__glow {
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0) 70%);
}

.software-logo-card--sky .software-logo-card__glow {
	background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, rgba(56, 189, 248, 0) 70%);
}

.software-logo-card--orange .software-logo-card__glow {
	background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0) 70%);
}

.software-logo-card--indigo .software-logo-card__glow {
	background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0) 70%);
}

.software-logo-card--slate .software-logo-card__glow {
	background: radial-gradient(circle, rgba(71, 85, 105, 0.18) 0%, rgba(71, 85, 105, 0) 70%);
}

.software-logo-card--violet .software-logo-card__glow {
	background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(139, 92, 246, 0) 70%);
}

.software-logo-card--cyan .software-logo-card__glow {
	background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0) 70%);
}

.why-alt5,
.clients-reimagined,
.contact-reimagined {
	position: relative;
}

.why-alt5 {
	padding-top: 40px;
	background: transparent;
}

.premium-card {
	height: 100%;
	padding: 30px 26px;
	border-radius: 26px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 252, 0.96) 100%);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	position: relative;
	overflow: hidden;
}

.premium-card:before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, rgba(22, 85, 120, 0), rgba(22, 85, 120, 0.5), rgba(22, 85, 120, 0));
	opacity: 0.8;
}

.premium-card:hover,
.products-showcase .service-item:hover,
.client-logo-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
}

.premium-icon,
.product-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: rgba(22, 85, 120, 0.16);
	color: #7ab8de;
	font-size: 1.45rem;
}

.premium-card h3 {
	margin: 24px 0 14px;
	font-size: 1.35rem;
}

.premium-card p {
	margin: 0;
	line-height: 1.75;
}

.about-reimagined {
	overflow: hidden;
}

.about-stack .eyebrow {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.1);
	color: #9CA3AF;
}

.about-stack h2 {
	margin: 22px 0 20px;
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	line-height: 1.1;
}

.about-stack p {
	line-height: 1.85;
}

.lead-text {
	font-size: 1.08rem;
	color: #E5E7EB;
}

.about-feature-list {
	display: grid;
	gap: 14px;
	margin: 28px 0 34px;
}

.about-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.about-feature-item i {
	font-size: 1.1rem;
	color: var(--accent-color);
}

.about-cta {
	color: #fff;
	background: linear-gradient(135deg, #165578 0%, #1e729f 100%);
}

.about-cta:hover {
	color: #fff;
	transform: translateY(-2px);
}

.about-visual-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 18px;
}

.about-photo {
	overflow: hidden;
	border-radius: 28px;
	background: #e9f1f7;
}

.about-photo img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
}

.about-photo-large {
	grid-row: span 2;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.stat-chip {
	padding: 18px 16px;
	border-radius: 22px;
	background: #0F172A;
}

.stat-chip strong {
	display: block;
	margin-bottom: 8px;
	font-size: 1.35rem;
	color: #ffffff;
}

.stat-chip span {
	display: block;
	line-height: 1.55;
	font-size: 0.92rem;
	color: #9CA3AF;
}

.products-showcase .service-item {
	padding: 30px;
	border-radius: 28px;
	background: #0F172A;
	overflow: hidden;
}

.featured-product {
	background: linear-gradient(145deg, #0F172A 0%, #132034 50%, #163048 100%);
}

.product-glow {
	position: absolute;
	top: -50px;
	right: -20px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(231, 76, 60, 0.18) 0%, rgba(231, 76, 60, 0) 70%);
}

.product-head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.product-tag {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(220, 53, 69, 0.1);
	color: #b42318;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-body {
	position: relative;
	z-index: 1;
}

.products-showcase .service-item .title {
	margin-bottom: 14px;
	font-size: 1.5rem;
}

.products-showcase .service-item .title a {
	color: var(--heading-color);
}

.products-showcase .service-item .description {
	margin-bottom: 24px;
	line-height: 1.8;
	color: #9CA3AF;
}

.product-actions {
	z-index: 2;
}

.products-showcase .btn {
	min-width: 140px;
	min-height: 44px;
	border-radius: 12px;
	font-weight: 600;
}

.products-showcase .btn-primary {
	background: linear-gradient(135deg, #165578, #1f6fa5);
	border-color: transparent;
	color: #fff;
}

.products-showcase .btn-outline-primary {
	color: #E5E7EB;
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
}

.products-showcase .btn-outline-primary:hover,
.products-showcase .btn-primary:hover {
	transform: translateY(-1px);
}

.clients-reimagined {
	padding-top: 30px;
}

.client-logo-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.client-logo-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 108px;
	border-radius: 22px;
	background: #0F172A;
	color: #E5E7EB;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.call-to-action-reimagined {
	padding: 40px 0 0;
	background: linear-gradient(180deg, #111827 0%, #0D1525 100%);
}

.cta-shell {
	padding: 54px 32px;
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
}

.cta-shell h3 {
	margin: 22px auto 18px;
	max-width: 900px;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.12;
	color: #fff;
}

.cta-shell p {
	max-width: 760px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.85;
}

.cta-shell .cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	margin-top: 28px;
	padding: 0 26px;
	border-radius: 16px;
	background: linear-gradient(135deg, #165578, #1f6fa5);
	color: #ffffff;
	font-weight: 700;
	box-shadow: 0 12px 28px rgba(22, 85, 120, 0.32);
}

.cta-shell .cta-btn:hover {
	color: #ffffff;
	transform: translateY(-2px);
}

.contact-reimagined .info-wrap,
.contact-reimagined .php-email-form {
	border-radius: 28px;
	background: #0F172A;
}

.contact-reimagined .info-wrap {
	padding: 28px;
}

.contact-reimagined .php-email-form {
	padding: 34px;
}

.contact-reimagined iframe {
	margin-top: 18px;
	border-radius: 22px;
}

@media (max-width: 1199px) {

	.hero-metrics,
	.about-stats,
	.client-logo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-reimagined {
		padding-top: 150px;
	}

	.hero-content {
		padding-right: 0;
	}

	.hero-showcase {
		min-height: 540px;
	}

	.hero-floating-card-top {
		right: 10px;
	}

	.hero-floating-card-bottom {
		left: 10px;
	}
}

@media (max-width: 991px) {
	.header {
		padding: 16px 0;
	}

	.header .container-fluid.container-xl {
		border-radius: 18px;
		padding: 11px 14px;
	}

	.header .logo .site-brand-mark {
		height: 64px;
		max-width: 280px;
	}

	.section-title p {
		font-size: 1.8rem;
	}

	.software-logos {
		margin-top: -24px;
	}

	.logos-carousel-shell {
		padding: 24px;
	}

	.logos-showcase-header {
		grid-template-columns: 1fr;
		align-items: flex-start;
	}

	.logos-showcase-meta {
		justify-content: flex-start;
	}

	.software-logo-card {
		grid-column: span 4;
	}

	.hero-grid {
		min-height: auto;
	}

	.hero-content {
		max-width: 100%;
		text-align: center;
	}

	.hero-content h2,
	.hero-description {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-showcase {
		min-height: auto;
		margin-top: 8px;
		padding: 34px 18px;
	}

	.hero-brand-frame {
		width: min(100%, 470px);
	}

	.hero-floating-card {
		position: relative;
		inset: auto;
		max-width: none;
	}

	.hero-floating-card-top {
		margin: 18px auto 0;
	}

	.hero-floating-card-bottom {
		margin: 14px auto 0;
	}

	.about-visual-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {
	.header {
		padding: 14px 0;
	}

	.header .container-fluid.container-xl {
		padding: 10px 12px;
		border-radius: 16px;
	}

	.header .logo .site-brand-mark {
		height: 56px;
		max-width: 235px;
	}

	.hero-reimagined {
		padding: 138px 0 84px;
	}

	.hero-content h2 {
		max-width: 12ch;
		font-size: 2.7rem;
	}

	.hero-description {
		font-size: 1rem;
		line-height: 1.8;
	}

	.software-logos {
		margin-top: -14px;
		padding-bottom: 10px;
	}

	.logos-carousel-shell {
		padding: 18px;
		border-radius: 24px;
	}

	.logos-showcase-meta {
		gap: 10px;
	}

	.logos-meta-chip {
		min-width: 0;
		flex: 1 1 140px;
	}

	.software-logo-grid {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		padding-bottom: 6px;
		margin: 0 -2px;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
	}

	.software-logo-grid::-webkit-scrollbar {
		display: none;
	}

	.software-logo-card {
		flex: 0 0 min(280px, 82vw);
		min-height: 204px;
		padding: 16px;
		border-radius: 22px;
		scroll-snap-align: start;
	}

	.software-logo-card__media {
		min-height: 88px;
		border-radius: 18px;
	}

	.software-logo-image {
		max-width: 140px;
		max-height: 56px;
	}

	.software-logo-card__copy h3 {
		font-size: 1.08rem;
	}

	.hero-actions,
	.hero-metrics,
	.about-stats,
	.client-logo-grid,
	.hero-logo-cloud {
		grid-template-columns: 1fr;
	}

	.hero-actions {
		display: grid;
	}

	.hero-actions a {
		width: 100%;
	}

	.hero-logo-cloud .featured {
		grid-column: span 1;
	}

	.hero-showcase {
		border-radius: 28px;
		padding: 24px 14px;
	}

	.hero-brand-frame {
		padding: 20px;
		border-radius: 26px;
	}

	.hero-brand-stage {
		min-height: 250px;
	}

	.hero-brand-ring-one {
		width: 220px;
		height: 220px;
	}

	.hero-brand-ring-two {
		width: 170px;
		height: 170px;
	}

	.hero-brand-core {
		width: 180px;
		height: 180px;
		border-radius: 28px;
	}

	.hero-brand-logo {
		width: min(100%, 128px);
	}

	.about-visual-grid {
		grid-template-columns: 1fr;
	}

	.about-photo-large {
		grid-row: span 1;
	}

	.products-showcase .service-item,
	.contact-reimagined .info-wrap,
	.contact-reimagined .php-email-form,
	.cta-shell {
		padding: 24px;
	}

	.section-title p,
	.cta-shell h3 {
		font-size: 1.6rem;
	}
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
	background-color: var(--surface-color);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	padding: 30px;
	height: 100%;
}

.blog-posts .post-img {
	max-height: 240px;
	margin: -30px -30px 0 -30px;
	overflow: hidden;
}

.blog-posts .title {
	font-size: 20px;
	font-weight: 700;
	padding: 0;
	margin: 20px 0 0 0;
}

.blog-posts .title a {
	color: var(--heading-color);
	transition: 0.3s;
}

.blog-posts .title a:hover {
	color: var(--accent-color);
}

.blog-posts .meta-top {
	margin-top: 20px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
	padding: 0;
	margin: 0;
}

.blog-posts .meta-top ul li+li {
	padding-left: 20px;
}

.blog-posts .meta-top i {
	font-size: 16px;
	margin-right: 8px;
	line-height: 0;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	font-size: 14px;
	display: inline-block;
	line-height: 1;
}

.blog-posts .content {
	margin-top: 20px;
}

.blog-posts .read-more a {
	display: inline-block;
	background: var(--accent-color);
	color: var(--contrast-color);
	padding: 8px 30px;
	transition: 0.3s;
	font-size: 14px;
	border-radius: 4px;
}

.blog-posts .read-more a:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
	padding-top: 0;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}

.blog-pagination li {
	margin: 0 5px;
	transition: 0.3s;
}

.blog-pagination li a {
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
	color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
	padding-bottom: 30px;
}

.blog-details .article {
	background-color: var(--surface-color);
	padding: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
	margin: -30px -30px 20px -30px;
	overflow: hidden;
}

.blog-details .title {
	color: var(--heading-color);
	font-size: 28px;
	font-weight: 700;
	padding: 0;
	margin: 30px 0;
}

.blog-details .content {
	margin-top: 20px;
}

.blog-details .content h3 {
	font-size: 22px;
	margin-top: 30px;
	font-weight: bold;
}

.blog-details .content blockquote {
	overflow: hidden;
	background-color: color-mix(in srgb, var(--default-color), transparent 95%);
	padding: 60px;
	position: relative;
	text-align: center;
	margin: 20px 0;
}

.blog-details .content blockquote p {
	color: var(--default-color);
	line-height: 1.6;
	margin-bottom: 0;
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
}

.blog-details .content blockquote:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: var(--accent-color);
	margin-top: 20px;
	margin-bottom: 20px;
}

.blog-details .meta-top {
	margin-top: 20px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
	padding: 0;
	margin: 0;
}

.blog-details .meta-top ul li+li {
	padding-left: 20px;
}

.blog-details .meta-top i {
	font-size: 16px;
	margin-right: 8px;
	line-height: 0;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	font-size: 14px;
	display: inline-block;
	line-height: 1;
}

.blog-details .meta-bottom {
	padding-top: 10px;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	display: inline;
}

.blog-details .meta-bottom a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
	color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
	list-style: none;
	display: inline;
	padding: 0 20px 0 0;
	font-size: 14px;
}

.blog-details .meta-bottom .cats li {
	display: inline-block;
}

.blog-details .meta-bottom .tags {
	list-style: none;
	display: inline;
	padding: 0;
	font-size: 14px;
}

.blog-details .meta-bottom .tags li {
	display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
	padding-right: 6px;
	color: var(--default-color);
	content: ",";
}

.blog-details .meta-bottom .share {
	font-size: 16px;
}

.blog-details .meta-bottom .share i {
	padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
	padding: 10px 0;
}

.blog-comments .comments-count {
	font-weight: bold;
}

.blog-comments .comment {
	margin-top: 30px;
	position: relative;
}

.blog-comments .comment .comment-img {
	margin-right: 14px;
}

.blog-comments .comment .comment-img img {
	width: 60px;
}

.blog-comments .comment h5 {
	font-size: 16px;
	margin-bottom: 2px;
}

.blog-comments .comment h5 a {
	font-weight: bold;
	color: var(--default-color);
	transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
	color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
	padding-left: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
	font-size: 20px;
}

.blog-comments .comment time {
	display: block;
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
	padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
	padding-top: 10px;
}

.comment-form form {
	background-color: var(--surface-color);
	margin-top: 30px;
	padding: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
	font-weight: bold;
	font-size: 22px;
}

.comment-form form p {
	font-size: 14px;
}

.comment-form form input {
	background-color: var(--surface-color);
	color: var(--default-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
	font-size: 14px;
	border-radius: 4px;
	padding: 10px 10px;
}

.comment-form form input:focus {
	color: var(--default-color);
	background-color: var(--surface-color);
	box-shadow: none;
	border-color: var(--accent-color);
}

.comment-form form input::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
	background-color: var(--surface-color);
	color: var(--default-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
	border-radius: 4px;
	padding: 10px 10px;
	font-size: 14px;
	height: 120px;
}

.comment-form form textarea:focus {
	color: var(--default-color);
	box-shadow: none;
	border-color: var(--accent-color);
	background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
	margin-bottom: 25px;
}

.comment-form form .btn-primary {
	border-radius: 4px;
	padding: 10px 20px;
	border: 0;
	background-color: var(--accent-color);
	color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
	color: var(--contrast-color);
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
	width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: color-mix(in srgb, var(--default-color), transparent 85%);
	opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
	background-color: var(--surface-color);
	padding: 30px;
	box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
	margin-top: 10px;
}

.portfolio-details .portfolio-description {
	padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
	padding: 0;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
	background-color: var(--surface-color);
	padding: 10px 30px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	margin-bottom: 20px;
}

.service-details .services-list a {
	display: block;
	line-height: 1;
	padding: 8px 0 8px 15px;
	border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
	margin: 20px 0;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	transition: 0.3s;
}

.service-details .services-list a.active {
	color: var(--heading-color);
	font-weight: 700;
	border-color: var(--accent-color);
}

.service-details .services-list a:hover {
	border-color: var(--accent-color);
}

.service-details .services-img {
	margin-bottom: 20px;
}

.service-details h3 {
	font-size: 26px;
	font-weight: 700;
}

.service-details h4 {
	font-size: 20px;
	font-weight: 700;
}

.service-details p {
	font-size: 15px;
}

.service-details ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}

.service-details ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
}

.service-details ul i {
	font-size: 20px;
	margin-right: 8px;
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
	/* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
	background-color: var(--surface-color);
	padding: 30px;
	margin: 60px 0 30px 0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
	color: var(--heading-color);
	font-size: 20px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 20px 0;
}

.widget-item {
	margin-bottom: 40px;
}

.widget-item:last-child {
	margin-bottom: 0;
}

.search-widget form {
	background: var(--background-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
	padding: 3px 10px;
	position: relative;
	border-radius: 50px;
	transition: 0.3s;
}

.search-widget form input[type=text] {
	border: 0;
	padding: 4px 10px;
	border-radius: 4px;
	width: calc(100% - 40px);
	background-color: var(--background-color);
	color: var(--default-color);
}

.search-widget form input[type=text]:focus {
	outline: none;
}

.search-widget form button {
	background: none;
	color: var(--default-color);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	font-size: 16px;
	padding: 0 16px;
	transition: 0.3s;
	line-height: 0;
}

.search-widget form button i {
	line-height: 0;
}

.search-widget form button:hover {
	color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
	border-color: var(--accent-color);
}

.categories-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.categories-widget ul li {
	padding-bottom: 10px;
}

.categories-widget ul li:last-child {
	padding-bottom: 0;
}

.categories-widget ul a {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	transition: 0.3s;
}

.categories-widget ul a:hover {
	color: var(--accent-color);
}

.categories-widget ul a span {
	padding-left: 5px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 14px;
}

.recent-posts-widget .post-item {
	display: flex;
	margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
	margin-bottom: 0;
}

.recent-posts-widget .post-item img {
	width: 80px;
	margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
	color: var(--default-color);
	transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
	color: var(--accent-color);
}

.recent-posts-widget .post-item time {
	display: block;
	font-style: italic;
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tags-widget ul li {
	display: inline-block;
}

.tags-widget ul a {
	background-color: color-mix(in srgb, var(--default-color), transparent 94%);
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	border-radius: 50px;
	font-size: 14px;
	padding: 5px 15px;
	margin: 0 6px 8px 0;
	display: inline-block;
	transition: 0.3s;
}

.tags-widget ul a:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
}

.tags-widget ul a span {
	padding-left: 5px;
	color: color-mix(in srgb, var(--default-color), transparent 60%);
	font-size: 14px;
}

/* --------------------------------------------------------------
# Alt5 Futuristic Refresh Overrides
-------------------------------------------------------------- */

:root {
	--default-font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
	--heading-font: "Montserrat", sans-serif;
	--nav-font: "Montserrat", sans-serif;
}

body {
	background: #0B0F14;
}

.header {
	--background-color: rgba(8, 11, 16, 0.38);
	backdrop-filter: blur(18px);
}

.scrolled .header {
	--background-color: rgba(8, 11, 16, 0.88);
}

.hero-reimagined {
	background: linear-gradient(180deg, #080B10 0%, #0B0F14 55%, #111827 100%);
}

.hero-showcase {
	animation: showcasePulse 9s ease-in-out infinite;
}

@keyframes showcasePulse {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-3px);
	}
}

.logos-carousel-shell {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(180deg, #0F172A 0%, #0B0F14 100%);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.logos-carousel-shell:before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: 33px;
	border: 1px solid rgba(182, 231, 255, 0.06);
	pointer-events: none;
}

.logos-carousel-intro h2 {
	color: #E5E7EB;
}

.logos-kicker {
	background: rgba(255, 255, 255, 0.06);
	color: #9CA3AF;
}

.logos-carousel-intro p {
	color: #9CA3AF;
}

.logos-meta-chip {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.logos-meta-chip strong {
	color: #E5E7EB;
}

.logos-meta-chip span {
	color: #9CA3AF;
}

.software-logo-card {
	background: linear-gradient(180deg, #0F172A 0%, #0B0F14 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.software-logo-card__eyebrow {
	background: rgba(255, 255, 255, 0.06);
	color: #9CA3AF;
}

.software-logo-card__arrow {
	background: rgba(255, 255, 255, 0.07);
	color: #E5E7EB;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.software-logo-card__media {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.software-logo-card__copy h3 {
	color: #E5E7EB;
}

.software-logo-card__copy p {
	color: #9CA3AF;
}

.software-logo-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: 0 34px 60px rgba(0, 0, 0, 0.34);
}

.software-logo-card:hover .software-logo-card__arrow {
	background: rgba(255, 255, 255, 0.12);
}

.software-logo-image {
	filter: saturate(1.08) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
}

.why-alt5 {
	background: linear-gradient(180deg, #111827 0%, #0B0F14 100%);
}

.premium-card {
	background: linear-gradient(180deg, #0F172A 0%, #0B1220 100%);
}

.premium-index {
	position: absolute;
	top: 24px;
	right: 24px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	color: rgba(156, 163, 175, 0.4);
}

.products-showcase .service-item {
	background: linear-gradient(180deg, #0F172A 0%, #0B0F14 100%);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 26px 56px rgba(0, 0, 0, 0.2);
}

.featured-product {
	background:
		radial-gradient(circle at top right, rgba(255, 122, 89, 0.18), transparent 24%),
		linear-gradient(180deg, rgba(20, 15, 17, 0.98) 0%, rgba(16, 16, 22, 0.98) 100%);
}

.products-showcase .service-item .title a {
	color: #E5E7EB;
}

.products-showcase .service-item .description {
	color: #9CA3AF;
}

.products-showcase .btn-outline-primary {
	color: #E5E7EB;
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
}

.clients-reimagined {
	background: linear-gradient(180deg, #0E1520 0%, #111827 100%);
}

.client-logo-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 138px;
	padding: 22px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.client-logo-card span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #9CA3AF;
	font-size: 0.68rem;
}

.client-logo-card strong {
	font-size: 1.02rem;
	line-height: 1.4;
	color: #E5E7EB;
	text-transform: none;
	letter-spacing: 0.01em;
}

.cta-shell {
	background: linear-gradient(180deg, #0F172A 0%, #0B0F14 100%);
	border-color: rgba(255, 255, 255, 0.08);
}

.contact-reimagined .info-wrap,
.contact-reimagined .php-email-form {
	background: linear-gradient(180deg, #0F172A 0%, #0B0F14 100%);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.contact-reimagined .info-item h3,
.contact-reimagined label {
	color: #E5E7EB;
}

.contact-reimagined .info-item p,
.contact-reimagined .php-email-form .form-control::placeholder {
	color: #9CA3AF;
}

.contact-reimagined .info-item i {
	color: #9CA3AF;
}

.contact-reimagined .php-email-form .form-control {
	min-height: 54px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: #E5E7EB;
	box-shadow: none;
}

.contact-reimagined .php-email-form textarea.form-control {
	min-height: 180px;
}

.contact-reimagined .php-email-form .form-control:focus {
	border-color: rgba(22, 85, 120, 0.6);
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
}

.contact-reimagined .php-email-form button[type="submit"] {
	min-height: 54px;
	padding: 0 28px;
	border: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, #165578 0%, #2e99cc 100%);
	color: #fff;
	font-weight: 700;
	box-shadow: 0 18px 34px rgba(8, 40, 58, 0.3);
}

@media (max-width: 991px) {
	.logos-showcase-header {
		grid-template-columns: 1fr;
	}

	.logos-showcase-meta {
		justify-content: flex-start;
	}
}

/* --------------------------------------------------------------
# Alt5 Home Production Refinement
-------------------------------------------------------------- */

.hero.section,
.why-alt5.section,
.about-reimagined.section,
.products-showcase.section,
.clients-reimagined.section,
.call-to-action-reimagined.section,
.contact-reimagined.section {
	padding-top: clamp(82px, 9vw, 116px);
	padding-bottom: clamp(82px, 9vw, 116px);
}

.software-logos.section {
	padding-top: 0;
	padding-bottom: clamp(48px, 6vw, 80px);
}

.section-title {
	padding-bottom: clamp(34px, 4vw, 54px);
}

.section-title h2 {
	margin-bottom: 18px;
	font-size: clamp(2rem, 3.1vw, 3rem);
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.section-title p {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.02rem;
	line-height: 1.8;
	color: #9CA3AF;
}

.section-title-left {
	text-align: left;
}

.section-title-left h2:before,
.section-title-left h2:after {
	left: 0;
	right: auto;
	margin: 0;
}

.section-title-left p {
	margin: 0;
}

.hero-reimagined {
	padding-top: 176px;
	padding-bottom: 134px;
}

.hero-grid {
	align-items: center;
	min-height: clamp(620px, 76vh, 760px);
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding-right: 42px;
}

.hero-content h2 {
	max-width: 12ch;
	margin: 24px 0 20px;
	line-height: 0.96;
}

.hero-description {
	max-width: 60ch;
	margin: 0;
	font-size: 1.04rem;
	line-height: 1.85;
}

.hero-actions {
	margin: 34px 0 36px;
	gap: 14px;
}

.btn-primary-hero,
.btn-secondary-hero,
.about-cta {
	min-height: 56px;
	padding: 0 28px;
	border-radius: 16px;
}

.hero-metrics {
	gap: 16px;
}

.metric-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 192px;
	padding: 22px 22px 20px;
}

.metric-card small {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 28px;
	margin-bottom: 18px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #9CA3AF;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.metric-card strong {
	margin-bottom: 10px;
	font-size: clamp(1.5rem, 2vw, 1.9rem);
	letter-spacing: -0.04em;
}

.metric-card span {
	margin-top: auto;
}

.hero-showcase {
	min-height: 626px;
	padding: 38px 34px;
	border-radius: 38px;
}

.hero-brand-frame {
	width: min(100%, 420px);
	padding: 28px;
}

.hero-brand-stage {
	min-height: 334px;
	margin: 20px 0 22px;
}

.hero-floating-card {
	max-width: 244px;
}

.hero-floating-card-top {
	top: 36px;
	right: 4px;
}

.hero-floating-card-bottom {
	bottom: 34px;
	left: 4px;
}

.logos-carousel-shell {
	max-width: min(1380px, calc(100% - 32px));
	padding: 34px;
	border-radius: 36px;
}

.logos-showcase-header {
	gap: 28px;
	margin-bottom: 28px;
	align-items: stretch;
}

.logos-carousel-intro {
	justify-content: center;
}

.logos-carousel-intro h2 {
	max-width: 13ch;
	line-height: 1.04;
}

.logos-carousel-intro p {
	max-width: 60ch;
	font-size: 1rem;
	line-height: 1.8;
}

.logos-showcase-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(150px, 1fr));
	align-items: stretch;
	gap: 12px;
}

.logos-meta-chip {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 100%;
	padding: 16px 18px;
	border-radius: 22px;
}

.logos-swiper .swiper-slide {
	height: auto;
}

.software-logo-card {
	display: flex;
	flex-direction: column;
	min-height: 256px;
	height: 100%;
	padding: 20px;
	border-radius: 26px;
}

.software-logo-card__brand {
	flex: 1;
	justify-content: space-between;
	gap: 18px;
}

.software-logo-card__media {
	min-height: 108px;
	padding: 18px;
}

.software-logo-image {
	width: 100%;
	max-width: 156px;
	max-height: 58px;
}

.software-logo-card__copy {
	display: grid;
	align-content: start;
	gap: 8px;
}

.software-logo-card__copy h3 {
	margin: 0;
	font-size: 1.16rem;
}

.software-logo-card__copy p {
	line-height: 1.65;
}

.why-alt5 {
	background: linear-gradient(180deg, #111827 0%, #0B0F14 100%);
}

.why-alt5-grid>[class*="col-"] {
	display: flex;
}

.premium-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	padding: 32px 28px 28px;
	border-radius: 28px;
}

.premium-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.premium-icon {
	margin-bottom: 22px;
}

.premium-index {
	top: 26px;
	right: 26px;
}

.premium-card h3 {
	margin: 0 0 14px;
	max-width: 14ch;
	font-size: 1.28rem;
	line-height: 1.2;
}

.premium-card p {
	margin-top: auto;
	color: #9CA3AF;
}

.about-reimagined .row {
	align-items: center;
}

.about-stack {
	max-width: 620px;
}

.about-stack h2 {
	max-width: 12ch;
	margin: 22px 0 18px;
}

.about-stack p {
	margin-bottom: 0;
	color: #9CA3AF;
}

.lead-text {
	margin-bottom: 18px;
}

.about-feature-list {
	gap: 16px;
	margin: 30px 0 0;
}

.about-feature-item {
	align-items: center;
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-feature-item span {
	color: #E5E7EB;
	line-height: 1.65;
}

.about-bottom-bar {
	margin-top: 32px;
}

.about-visual {
	position: relative;
	padding: 18px;
	border-radius: 34px;
	background: linear-gradient(180deg, #0F172A 0%, #0B0F14 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.about-visual-grid {
	gap: 16px;
	grid-template-columns: 1.2fr 0.9fr;
}

.about-photo {
	border-radius: 24px;
}

.about-photo img {
	min-height: 240px;
}

.about-photo-large img {
	min-height: 100%;
}

.about-stats {
	gap: 14px;
	margin-top: 16px;
}

.stat-chip {
	min-height: 124px;
	padding: 18px 18px 16px;
	border-radius: 20px;
}

.stat-chip small {
	display: block;
	margin-bottom: 10px;
	color: #9CA3AF;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.stat-chip strong {
	margin-bottom: 6px;
}

.products-showcase {
	background: linear-gradient(180deg, #111827 0%, #0B0F14 100%);
}

.products-showcase .row>[class*="col-"] {
	display: flex;
}

.products-showcase .service-item {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	padding: 30px 30px 28px;
	border-radius: 30px;
}

.product-head {
	min-height: 58px;
	margin-bottom: 26px;
}

.product-body {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.products-showcase .service-item .title {
	margin-bottom: 16px;
}

.products-showcase .service-item .title a {
	line-height: 1.15;
}

.products-showcase .service-item .description {
	margin-bottom: 28px;
	line-height: 1.75;
	flex: 1;
}

.product-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.products-showcase .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 154px;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 14px;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.products-showcase .btn-primary {
	box-shadow: 0 18px 32px rgba(9, 42, 61, 0.24);
}

.products-showcase .btn-outline-primary {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.clients-reimagined {
	background: linear-gradient(180deg, #0E1520 0%, #111827 100%);
}

.clients-layout {
	align-items: stretch;
}

.clients-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.clients-copy .eyebrow {
	width: fit-content;
	margin-bottom: 22px;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.1);
	color: #9CA3AF;
}

.clients-copy h2 {
	max-width: 11ch;
}

.clients-copy p {
	max-width: 54ch;
}

.client-logo-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.client-logo-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 158px;
	padding: 22px 22px 20px;
	border-radius: 24px;
	text-transform: none;
	letter-spacing: normal;
}

.client-logo-card span {
	min-height: 30px;
	margin-bottom: 20px;
}

.client-logo-card strong {
	font-size: 1.02rem;
	line-height: 1.5;
}

.call-to-action-reimagined {
	padding-top: 24px;
}

.cta-shell {
	padding: 58px 40px;
	border-radius: 34px;
}

.cta-shell h3 {
	max-width: 15ch;
}

.cta-shell .cta-btn {
	min-height: 58px;
	padding: 0 28px;
	border-radius: 16px;
	box-shadow: 0 20px 36px rgba(8, 40, 58, 0.22);
}

.contact-reimagined {
	background: linear-gradient(180deg, #0B0F14 0%, #0D1525 100%);
}

.contact-reimagined .row>[class*="col-"] {
	display: flex;
}

.contact-reimagined .info-wrap,
.contact-reimagined .php-email-form {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	padding: 32px;
}

.contact-panel-header,
.contact-form-header {
	margin-bottom: 28px;
}

.contact-panel-header .eyebrow,
.contact-form-header .eyebrow {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.1);
	color: #9CA3AF;
}

.contact-panel-header h3,
.contact-form-header h3 {
	margin: 18px 0 12px;
	font-size: clamp(1.7rem, 2.6vw, 2.3rem);
	line-height: 1.14;
	color: #ffffff;
}

.contact-panel-header p,
.contact-form-header p {
	margin: 0;
	color: #9CA3AF;
	line-height: 1.8;
}

.contact-reimagined .info-item {
	align-items: flex-start !important;
	gap: 16px;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-reimagined .info-item:first-of-type {
	padding-top: 0;
	border-top: 0;
}

.contact-reimagined .info-item:last-of-type {
	padding-bottom: 0;
}

.contact-reimagined .info-item i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
}

.contact-reimagined .info-item h3 {
	margin-bottom: 6px;
	font-size: 1rem;
}

.contact-reimagined .info-item p {
	margin: 0;
	line-height: 1.7;
}

.contact-reimagined iframe {
	margin-top: auto;
	min-height: 270px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.contact-reimagined label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.contact-reimagined .php-email-form .row.gy-4 {
	--bs-gutter-y: 1.15rem;
}

.contact-reimagined .php-email-form .form-control {
	min-height: 56px;
	padding: 0 18px;
	border-radius: 16px;
}

.contact-reimagined .php-email-form textarea.form-control {
	min-height: 190px;
	padding-top: 16px;
}

.contact-showcase {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	min-height: 100%;
	padding: 32px;
	border-radius: 34px;
	background: linear-gradient(180deg, #111827 0%, #0B0F14 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.contact-showcase-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.contact-highlight-card {
	min-height: 100%;
	padding: 22px 20px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(196, 234, 255, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-highlight-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	color: #9CA3AF;
	font-size: 1.2rem;
}

.contact-highlight-card strong {
	display: block;
	margin-bottom: 10px;
	color: #ffffff;
	font-size: 1rem;
}

.contact-highlight-card p {
	margin: 0;
	color: #9CA3AF;
	line-height: 1.7;
}

.contact-cta-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 26px;
	border-radius: 26px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-cta-copy {
	max-width: 520px;
}

.contact-cta-kicker {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 12px;
	margin-bottom: 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: #9CA3AF;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.contact-cta-panel h4 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: clamp(1.15rem, 1.9vw, 1.45rem);
	line-height: 1.35;
}

.contact-cta-panel p {
	margin: 0;
	color: #9CA3AF;
	line-height: 1.75;
}

.contact-cta-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 220px;
}

.contact-cta-actions .btn-primary-hero,
.contact-cta-actions .btn-secondary-hero {
	justify-content: center;
	text-align: center;
}

.contact-secondary-btn {
	border-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1199.98px) {
	.contact-showcase-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-cta-panel {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact-cta-actions {
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 767.98px) {
	.contact-showcase {
		padding: 24px;
	}

	.contact-showcase-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

.contact-reimagined .php-email-form button[type="submit"] {
	min-height: 56px;
	width: 100%;
	margin-top: 8px;
	border-radius: 16px;
	letter-spacing: 0.01em;
}

@media (max-width: 1199px) {
	.hero-content {
		padding-right: 20px;
	}

	.hero-showcase {
		min-height: 592px;
		padding: 32px 24px;
	}

	.logos-showcase-meta {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.client-logo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {

	.hero.section,
	.why-alt5.section,
	.about-reimagined.section,
	.products-showcase.section,
	.clients-reimagined.section,
	.call-to-action-reimagined.section,
	.contact-reimagined.section {
		padding-top: 72px;
		padding-bottom: 72px;
	}

	.hero-reimagined {
		padding-top: 144px;
		padding-bottom: 96px;
	}

	.hero-content {
		padding-right: 0;
		align-items: center;
		text-align: center;
	}

	.hero-metrics {
		width: 100%;
	}

	.metric-card {
		min-height: 176px;
		text-align: left;
	}

	.hero-showcase {
		min-height: auto;
		padding: 32px 20px 20px;
	}

	.hero-floating-card {
		width: min(100%, 440px);
	}

	.logos-carousel-shell {
		max-width: calc(100% - 24px);
		padding: 26px;
	}

	.logos-showcase-meta {
		grid-template-columns: 1fr;
	}

	.premium-card h3,
	.clients-copy h2,
	.cta-shell h3,
	.about-stack h2 {
		max-width: none;
	}

	.client-logo-card {
		min-height: 144px;
	}
}

@media (max-width: 767px) {

	.hero.section,
	.why-alt5.section,
	.about-reimagined.section,
	.products-showcase.section,
	.clients-reimagined.section,
	.call-to-action-reimagined.section,
	.contact-reimagined.section {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.hero-reimagined {
		padding-top: 132px;
		padding-bottom: 82px;
	}

	.hero-content h2 {
		font-size: 2.55rem;
	}

	.hero-actions {
		margin: 28px 0 30px;
	}

	.metric-card,
	.client-logo-card,
	.stat-chip,
	.software-logo-card,
	.products-showcase .service-item {
		min-height: auto;
	}

	.logos-carousel-shell {
		max-width: calc(100% - 20px);
		padding: 20px;
		border-radius: 26px;
	}

	.software-logo-card {
		padding: 18px;
	}

	.about-visual {
		padding: 14px;
		border-radius: 28px;
	}

	.product-actions,
	.hero-actions {
		display: grid;
	}

	.products-showcase .btn,
	.hero-actions a,
	.cta-shell .cta-btn {
		width: 100%;
	}

	.client-logo-grid {
		grid-template-columns: 1fr;
	}

	.contact-reimagined .info-wrap,
	.contact-reimagined .php-email-form,
	.cta-shell {
		padding: 24px;
	}
}