:root {
	/* Professional Enterprise Colors */
	--primary-700: #1e40af;
	/* Deep trust blue */
	--primary-600: #2563eb;
	/* Primary brand blue */
	--primary-500: #3b82f6;
	/* Interactive blue */
	--bs-primary: #2563eb;
	/* Primary brand blue */

	/* Secondary & Success Colors */
	--accent-600: #059669;
	/* Security green */
	--accent-500: #10b981;
	/* Subtle accent */
	--bs-secondary: #10b981;
	/* Fresh green - success/action color */
	--bs-success: #10b981;
	/* Success green */

	/* Professional Neutrals */
	--neutral-900: #111827;
	/* Deep text */
	--neutral-800: #1f2937;
	/* Secondary text */
	--neutral-700: #374151;
	/* Tertiary text */
	--neutral-600: #4b5563;
	/* Muted text */
	--neutral-100: #f9fafb;
	/* Light backgrounds */
	--neutral-50: #ffffff;
	/* Pure white */

	/* Dark Colors */
	--bs-dark: #111827;
	/* Deep dark - for backgrounds */
	--bs-gray-900: #1f2937;
	/* Dark gray - for secondary backgrounds */
	--bs-gray-800: #374151;
	/* Almost black - for strong text */
	--bs-gray-700: #4b5563;
	/* Very dark gray - for subtle text */
	--bs-gray-600: #6b7280;
	/* Deep gray - for disabled states */

	/* Light Colors */
	--bs-light: #f9fafb;
	/* Light gray - for light backgrounds */
	--bs-gray-100: #ffffff;
	/* Pure white - for cards */
	--bs-gray-200: #e5e7eb;
	/* Light gray - for borders */
	--bs-gray-300: #d1d5db;
	/* Medium gray - for text */
	--bs-gray-400: #9ca3af;
	/* Dark gray - for secondary text */
	--bs-gray-500: #6b7280;
	/* Muted gray - for tertiary text */

	/* Status Colors */
	--bs-info: #3b82f6;
	/* Info blue */
	--bs-warning: #f59e0b;
	/* Warning amber */
	--bs-danger: #ef4444;
	/* Danger red */

	/* Deprecated - Remove neon colors */
	--neon-blue: #3b82f6;
	/* Replaced with professional blue */
	--neon-green: #10b981;
	/* Replaced with professional green */

	/* Special Effects */
	--dark-bg: rgba(17, 24, 39, 0.95);
	/* Dark overlay */
	--glass-bg: rgba(255, 255, 255, 0.1);
	/* Glass effect */
	--glow-primary: rgba(37, 99, 235, 0.3);
	/* Primary glow - subtle */
	--glow-secondary: rgba(16, 185, 129, 0.3);
	/* Secondary glow - subtle */

	/* Professional shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Professional Typography */
.text-display {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--neutral-900);
}

.text-heading-1 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--neutral-900);
}

.text-heading-2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 600;
	line-height: 1.3;
	color: var(--neutral-800);
}

.text-body-large {
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--neutral-700);
}

.text-body {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--neutral-700);
}

.text-small {
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--neutral-600);
}

/*** Spinner Start ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

/*** Spinner End ***/

/*** Button Start ***/
.btn {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.8rem 1.6rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: none;
}

.btn-primary {
	background: var(--bs-primary);
	color: #fff;
}

.btn-primary:hover {
	background: var(--bs-secondary);
	transform: translateY(-3px);
}

.btn-secondary {
	background: var(--bs-secondary);
	color: var(--bs-dark);
}

.btn-secondary:hover {
	background: var(--bs-primary);
	color: #fff;
	transform: translateY(-3px);
}

.btn-square {
	width: 38px;
	height: 38px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}

.btn-primary {
	color: #fff;
}

.btn-secondary {
	color: var(--bs-dark);
}

.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 48px;
	/* Even number for perfect circle */
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bs-primary), var(--neon-blue));
	color: #fff;
	border-radius: 50%;
	/* Perfect circle */
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 99;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
	font-size: 1.25rem;
	transition: all 0.3s ease;
}

.back-to-top:hover i {
	transform: translateY(-2px);
}

@media (max-width: 767.98px) {
	.back-to-top {
		right: 15px;
		bottom: 15px;
		width: 40px;
		/* Even number for perfect circle */
		height: 40px;
	}

	.back-to-top i {
		font-size: 1rem;
	}
}

/*** Button End ***/

/*** Topbar Start ***/
.top-info .btn {
	font-weight: 500;
	padding: 6px 12px;
	border-radius: 8px;
	transition: 0.3s ease-in-out;
}

.call-us {
	background-color: var(--bs-primary);
	color: white;
	border: none;
}

.call-us:hover {
	background-color: var(--neon-green);
}

.email-support {
	background-color: var(--neon-blue);
	color: var(--bs-dark);
	border: none;
}

.email-support:hover {
	background-color: var(--bs-gray-700);
	color: white;
}

#note {
	font-size: 14px;
	font-weight: 600;
	color: var(--bs-gray-800);
}

/* Branding Message Container */
#branding-message {
	width: 800px;
	font-size: 25px;
	font-weight: bold;
	color: var(--bs-dark);
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	text-shadow: 0 0 5px var(--bs-primary), 0 0 10px var(--bs-info);
}

/* Text Scrolling Effect */
#branding-message small {
	position: absolute;
	white-space: nowrap;
	animation: scrollText 15s linear infinite;
	color: var(--bs-white);
}

/* Hover Glow Effect */
#branding-message:hover small {
	text-shadow: 0 0 10px var(--bs-dark), 0 0 20px var(--neon-green);
}


/* Keyframe Animation for Scrolling */
@keyframes scrollText {
	from {
		transform: translateX(-100%);
	}

	to {
		transform: translateX(100%);
	}
}

/* Container for Animation */
.file-transaction-container {
	position: relative;
	width: 180px;
	/* Adjusted to fit all elements */
	height: 24px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Corporate Buildings (Start & End) */
.building-left,
.building-right {
	font-size: 20px;
	color: var(--bs-dark);
}

/* File Icon - Starts from Left */
.file-icon {
	font-size: 18px;
	color: var(--bs-primary);
	position: absolute;
	left: -20px;
	/* Start position off-screen */
	animation: flyFile 5s linear infinite;
	transition: color 0.5s ease-in-out;
	/* Smooth color transition */
}

/* Lock Icon - Stays in Place */
.lock-icon {
	font-size: 18px;
	color: var(--neon-blue);
	position: absolute;
	left: 50%;
	/* Center of the path */
	transform: translateX(-50%);
}

/* Keyframe Animation for File Movement */
@keyframes flyFile {
	0% {
		left: -20px;
		opacity: 1;
		color: var(--bs-primary);
		/* Original color */
	}

	20% {
		opacity: 1;
		color: var(--bs-primary);
	}

	40% {
		left: 50px;
		color: var(--bs-primary);
		/* Approaching lock */
	}

	50% {
		left: 65px;
		color: var(--bs-primary);
	}

	60% {
		left: 75px;
	}

	70% {
		left: 120px;
		color: var(--neon-green);
	}

	90% {
		left: 160px;
		opacity: 1;
		color: var(--neon-green);
	}

	100% {
		left: 170px;
		/* Reaching checkmark */
		opacity: 0;
		color: var(--neon-green);
		/* Fade out here */
	}
}

/*** Topbar End ***/

/*** Modern Professional Navbar ***/
.navbar-modern {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(17, 24, 39, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.75rem 0;
	transition: all 0.3s ease;
	z-index: 1050;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.navbar-modern .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar-modern.scrolled {
	background: rgba(255, 255, 255, 0.98);
	padding: 0.5rem 0;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Brand Logo */
.navbar-brand-modern {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

/* Ensure proper spacing on mobile */
@media (max-width: 991.98px) {
	.navbar-modern .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.navbar-brand-modern {
		margin-left: 0;
		margin-right: 0;
		order: 2;
	}

	.mobile-menu-toggle {
		order: 1;
		margin-right: 0;
		flex-shrink: 0;
	}
}

.brand-logo {
	height: 40px;
	width: auto;
	transition: all 0.3s ease;
	filter: none;
}

.navbar-modern.scrolled .brand-logo {
	height: 36px;
	filter: brightness(0);
}

/* Desktop Navigation */
.navbar-nav-modern {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-right: auto;
}

.nav-menu-modern {
	display: flex;
	align-items: center;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-item-modern {
	position: relative;
}

.nav-link-modern {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0.5rem 0.75rem;
	color: white;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	border-radius: 6px;
}

.navbar-modern.scrolled .nav-link-modern {
	color: var(--neutral-700);
}

.nav-link-modern:hover {
	color: var(--primary-600);
	background: rgba(37, 99, 235, 0.05);
	transform: translateY(-1px);
}

.nav-text {
	position: relative;
	z-index: 2;
}

.nav-indicator {
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--primary-600);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link-modern:hover .nav-indicator,
.nav-link-modern.active .nav-indicator {
	width: 100%;
}

/* Dropdown Styles */
.dropdown-modern {
	position: relative;
}

.dropdown-toggle-modern {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.dropdown-icon {
	font-size: 0.75rem;
	transition: transform 0.3s ease;
}

.dropdown-modern:hover .dropdown-icon {
	transform: rotate(180deg);
}

.dropdown-menu-modern {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 320px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
	margin-top: 0.5rem;
}

.dropdown-modern:hover .dropdown-menu-modern {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-content {
	padding: 1.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.dropdown-section {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.dropdown-header {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--neutral-500);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding-bottom: 0.5rem;
}

.dropdown-item-modern {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	color: var(--neutral-700);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.dropdown-item-modern:hover {
	background: rgba(37, 99, 235, 0.05);
	color: var(--primary-600);
	transform: translateX(4px);
}

.dropdown-item-modern i {
	width: 20px;
	color: var(--primary-600);
	font-size: 1rem;
}

.dropdown-item-modern div span {
	display: block;
	font-weight: 500;
	font-size: 0.9rem;
}

.dropdown-item-modern div small {
	display: block;
	color: var(--neutral-500);
	font-size: 0.75rem;
	margin-top: 0.125rem;
}

/* CTA Button */
.navbar-cta-modern {
	margin-left: 1.5rem;
}

.cta-button-modern {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.8rem;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.cta-button-modern:hover {
	background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
	color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	gap: 3px;
}

.navbar-modern.scrolled .mobile-menu-toggle {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(0, 0, 0, 0.2);
}

.hamburger-line {
	width: 18px;
	height: 2px;
	background: white;
	transition: all 0.3s ease;
	border-radius: 1px;
}

.navbar-modern.scrolled .hamburger-line {
	background: var(--neutral-700);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(17, 24, 39, 0.98);
	backdrop-filter: blur(20px);
	z-index: 1040;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-container {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
}

.mobile-nav-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-logo {
	height: 40px;
	width: auto;
}

.mobile-nav-close {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: white;
	font-size: 1.25rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile-nav-close:hover {
	background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 2rem;
}

.mobile-nav-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.mobile-nav-item {
	position: relative;
}

.mobile-nav-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	color: white;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.mobile-nav-link:hover {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	transform: translateX(8px);
}

.mobile-nav-link i {
	width: 24px;
	color: var(--primary-400);
	font-size: 1.25rem;
}

.submenu-toggle {
	margin-left: auto;
	font-size: 0.875rem;
	transition: transform 0.3s ease;
}

.has-submenu.expanded .submenu-toggle {
	transform: rotate(90deg);
}

.mobile-submenu {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 0 2.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.has-submenu.expanded .mobile-submenu {
	max-height: 200px;
}

.mobile-submenu a {
	display: block;
	padding: 0.75rem 1rem;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.95rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.mobile-submenu a:hover {
	background: rgba(255, 255, 255, 0.05);
	color: white;
}

.mobile-nav-cta {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 1rem;
	background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
	color: white;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.mobile-cta-button:hover {
	background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
	transform: translateY(-2px);
	color: white;
}

.mobile-contact-info {
	text-align: center;
}

.mobile-contact-info p {
	color: rgba(255, 255, 255, 0.7);
	margin: 0.5rem 0;
	font-size: 0.875rem;
}

.mobile-contact-info i {
	color: var(--primary-400);
	margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
	.navbar-nav-modern {
		display: none;
	}

	.navbar-modern .container {
		justify-content: flex-start;
		gap: 1rem;
	}
}

@media (min-width: 992px) {
	.mobile-menu-toggle {
		display: none;
	}
}

/* Body Padding for Fixed Navbar */
body {
	padding-top: 68px;
}

@media (max-width: 991.98px) {
	body {
		padding-top: 58px;
	}
}

/*** Modern Professional Navbar End ***/

/*** Carousel Start ***/
.carousel-item {
	position: relative;
	min-height: 400px;
}

.carousel-item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.carousel-item img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-height: 500px;
}

.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: rgba(0, 0, 0, .5);
	z-index: 1;
	padding: 20px;
}

.carousel-caption p {
	max-width: 700px;
	margin: 0 auto 20px;
}

.carousel-control-prev,
.carousel-control-next {
	width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 3rem;
	height: 3rem;
	background-color: var(--bs-dark);
	border: 12px solid var(--bs-dark);
	border-radius: 3rem;
}

/*** Futuristic Carousel Buttons ***/
.carousel-caption .btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 250px;
	height: 60px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	border: 2px solid var(--neon-blue);
	background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-green) 100%);
	color: #fff;
	box-shadow: 0 0 10px var(--neon-blue);
}

.carousel-caption .btn:hover {
	background: var(--dark-bg);
	color: var(--neon-blue);
	box-shadow: 0 0 20px var(--neon-green), 0 0 30px var(--neon-blue);
}

.carousel-caption .btn::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 100%;
	top: 0;
	left: -100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	transition: all 0.5s ease-in-out;
}

.carousel-caption .btn:hover::before {
	left: 100%;
}

.carousel-caption .btn-outline-light {
	border: 2px solid var(--neon-blue);
	background: transparent;
	color: var(--neon-blue);
	box-shadow: none;
}

.carousel-caption .btn-outline-light:hover {
	background: var(--neon-blue);
	color: #fff;
	box-shadow: 0 0 15px var(--neon-green);
}

#carouselId .carousel-indicators li {
	width: 30px;
	height: 10px;
	background: var(--bs-primary);
	margin: 10px;
	border-radius: 30px;
	opacity: 1;
}

#carouselId .carousel-indicators li:hover {
	background: var(--bs-secondary);
}

.page-header {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url(../img/carousel-1.jpg) center center no-repeat;
	background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
	color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
	font-size: 18px;
	color: var(--bs-white);
}

@media (max-width: 992px) {

	.carousel-item,
	.carousel-item img {
		min-height: 500px;
	}

	.carousel-caption h1 {
		font-size: 40px !important;
	}

	.carousel-caption p {
		font-size: 16px !important;
	}
}

@media (max-width: 768px) {

	.carousel-item,
	.carousel-item img {
		min-height: 450px;
	}

	.carousel-caption h1 {
		font-size: 28px !important;
	}

	.carousel-caption h2 {
		font-size: 18px !important;
	}

	.carousel-caption p {
		font-size: 14px !important;
	}

	.carousel-content-btn1,
	.carousel-content-btn2 {
		font-size: 12px;
		padding: 8px 16px;
	}

	.carousel-caption {
		padding: 15px;
	}
}

/*** Carousel End ***/

/*** Facts Start ***/

/* Reduce container padding */
.container-fluid.bg-secondary {
	padding: 10px 0;
}

/* Fact Items */

/* Fact Item */
.fact-item {
	transition: transform 0.3s ease, background-color 0.3s ease;
	cursor: pointer;
}

.fact-item:hover {
	transform: translateY(-5px);
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
}

/* Numbers */
.fact-item h4 {
	font-size: 1.8rem;
	/* Medium-sized numbers */
	font-weight: bold;
	color: var(--bs-primary);
	margin: 0;
	transition: color 0.3s ease;
}

.fact-item:hover h4 {
	color: var(--bs-secondary);
	/* Change color on hover */
}

/* Descriptions */
.fact-item small {
	font-size: 0.9rem;
	/* Description font size */
	color: #fff;
	font-weight: 500;
	margin-top: 2px;
}

/* Reduce Padding for Section */
.container-fluid.bg-secondary {
	padding: 10px 0;
	/* Compact vertical space */
}

/* Responsive Adjustments */
@media (max-width: 576px) {
	.fact-item h4 {
		font-size: 1.5rem;
		/* Smaller numbers for mobile */
	}

	.fact-item small {
		font-size: 0.8rem;
		/* Adjust text size */
	}
}

/*** Facts End ***/

/*** Benefits Start ***/

/* General Styling */
.benefits-section {
	background: linear-gradient(135deg, var(--bs-gray-100) 0%, var(--bs-gray-200) 100%);
	position: relative;
	overflow: hidden;
}

.benefits-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/tech-pattern.png') repeat;
	opacity: 0.05;
	pointer-events: none;
}

.benefit-card {
	transition: all 0.3s ease;
	border: 1px solid var(--bs-gray-200);
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	border-color: var(--bs-primary);
}

.benefit-icon {
	background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
	box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.3);
}

/* Headings */
.benefit-card h3 {
	color: var(--bs-gray-800);
	font-size: 1.5rem;
	font-weight: bold;
	margin-top: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.benefit-title {
	color: var(--bs-primary);
}

/* Text Content */
.benefit-content {
	color: var(--bs-gray-600);
	font-size: 1rem;
	margin-top: 10px;
	display: none;
}

/* Description Text */
.benefit-description {
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--bs-secondary);
}

.benefit-content ul {
	padding: 0;
	list-style: none;
}

.benefit-content li {
	padding: 6px 0;
	font-size: 1rem;
	opacity: 0.9;
}

/* "Click Me" text styling */
.click-me-text {
	position: absolute;
	top: 0%;
	left: 20%;
	transform: translate(-50%, -50%);
	font-size: 1.2rem;
	color: rgba(0, 255, 204, 0.9);
	background: rgba(0, 0, 0, 0.6);
	padding: 8px 14px;
	border-radius: 6px;
	transition: opacity 0.3s ease, transform 0.3s ease;
	opacity: 0;
	/* Initially hidden */
}

/* Show "Click Me" only on hover */
.benefit-card:hover .click-me-text {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.benefits-container {
		grid-template-columns: 1fr;
	}
}

/* More Compact Comparison Section */
.comparison-section {
	margin-top: 40px;
	padding: 20px 0;
	background: rgba(10, 15, 31, 0.85);
	border-radius: 12px;
}

/* Table Wrapper - Reduced Padding */
.comparison-table-wrapper {
	max-width: 800px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	padding: 15px;
	backdrop-filter: blur(8px);
	box-shadow: 0 0 12px rgba(0, 255, 255, 0.15);
}

/* Table Layout */
.comparison-table {
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* Table Header */
.comparison-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	background: rgba(0, 255, 204, 0.12);
	border-radius: 6px;
	font-weight: bold;
	color: #00ffcc;
	text-transform: uppercase;
	font-size: 0.85rem;
}

/* Table Rows - Less Padding & Margin */
.comparison-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 6px;
	margin-bottom: 4px;
	transition: background 0.2s ease;
}

/* Alternating Row Hover Effect */
.comparison-row:hover {
	background: rgba(0, 255, 255, 0.1);
}

/* Column Styles */
.feature-col {
	flex: 1.5;
	text-align: left;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 6px;
}

.safex-col,
.competitor-col {
	flex: 1;
	text-align: center;
	font-size: 0.85rem;
	font-weight: bold;
}

/* SafeX Column Color */
.safex-col {
	color: #00ffcc;
}

/* Competitor Column Color */
.competitor-col {
	color: #e74c3c;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

	.comparison-header,
	.comparison-row {
		flex-direction: column;
		text-align: center;
	}

	.feature-col {
		text-align: center;
		justify-content: center;
	}
}

/** Benefits End ***/


/*** Services Start ***/
.services-section {
	background: linear-gradient(135deg, #012A4A, #03528b);
	padding: 60px 0;
	text-align: center;
}

.services-title {
	font-size: 2rem;
	font-weight: bold;
	color: white;
	margin-bottom: 0.75rem;
}

.services-subtitle {
	font-size: 1.1rem;
	color: #B0C4DE;
	margin-bottom: 2rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.service-card {
	position: relative;
	background: rgba(255, 255, 255, 0.1);
	padding: 1.5rem 1rem;
	border-radius: 12px;
	height: 180px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(46, 255, 130, 0.1));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card:hover::before {
	opacity: 1;
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 25px rgba(0, 217, 255, 0.15);
}

.service-icon {
	font-size: 2rem;
	color: var(--neon-blue);
	margin: 0;
	transition: all 0.3s ease;
	position: relative;
}

.service-card:hover .service-icon {
	transform: scale(1.1);
	color: var(--neon-green);
}

.service-card h4 {
	font-size: 1.1rem;
	font-weight: bold;
	color: white;
	margin: 0;
	line-height: 1.4;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
}

.service-card:hover h4 {
	color: var(--neon-green);
}

@media (max-width: 991.98px) {
	.services-section {
		padding: 40px 0;
	}

	.services-title {
		font-size: 1.75rem;
	}
}

@media (max-width: 767.98px) {
	.services-section {
		padding: 30px 0;
	}

	.service-card {
		height: 160px;
		padding: 1rem;
	}

	.service-icon {
		font-size: 1.75rem;
	}

	.service-card h4 {
		font-size: 0.9rem;
	}
}

/*** Solutions Start ***/
.solutions-section {
	background: var(--bs-gray-900);
	padding: 60px 0;
	text-align: center;
}

.solutions-title {
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	margin: 1.5rem 0 0.75rem;
}

.solutions-subtitle {
	font-size: 1.1rem;
	color: var(--bs-gray-300);
	margin-bottom: 2rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.solution-card {
	background: #fff;
	border-radius: 10px;
	padding: 1.5rem;
	height: 280px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.solution-icon {
	width: 80px;
	height: 80px;
	background: var(--bs-primary);
	color: white;
	font-size: 2.5rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.5rem;
	transition: background 0.3s ease;
}

.solution-card:hover .solution-icon {
	background: var(--bs-secondary);
}

.solution-card h4 {
	color: var(--bs-dark);
	font-size: 1.3rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.solution-card p {
	color: var(--bs-gray-700);
	font-size: 1rem;
	line-height: 1.5;
	margin: 0;
}

.solutions-btn {
	display: inline-block;
	background: var(--bs-primary);
	color: white;
	padding: 1rem 2rem;
	font-weight: bold;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: 3rem;
}

.solutions-btn:hover {
	background: var(--bs-secondary);
	transform: translateY(-3px);
}

@media (max-width: 991.98px) {

	.services-section,
	.solutions-section {
		padding: 60px 0;
	}

	.services-title,
	.solutions-title {
		font-size: 2rem;
	}

	.solution-card {
		height: 300px;
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 767.98px) {

	.services-section,
	.solutions-section {
		padding: 40px 0;
	}

	.service-card {
		height: 180px;
		padding: 1.5rem;
	}

	.service-icon {
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.service-card h4 {
		font-size: 1rem;
	}

	.solution-card {
		height: 280px;
	}

	.service-icon,
	.solution-icon {
		font-size: 2rem;
	}
}

/*** Services End ***/

/*** Project Start ***/
.project-card {
	display: flex;
	align-items: stretch;
	gap: 2rem;
	background: white;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	height: 100%;
	min-height: 300px;
}

.project-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 32px -1px rgba(0, 0, 0, 0.15);
}

/* Project Text Section */
.project-text {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.project-text h5 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--bs-primary);
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.project-text h4 {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--bs-gray-900);
	margin-bottom: 1rem;
	line-height: 1.3;
}

.project-text p {
	font-size: 1rem;
	color: var(--bs-gray-700);
	line-height: 1.6;
	margin-bottom: 0;
	flex: 1;
}

/* Project Image */
.project-img {
	flex: 0 0 180px;
	align-self: center;
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-img img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 12px;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-img::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(3, 82, 139, 0.1), rgba(0, 217, 255, 0.1));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.project-card:hover .project-img::after {
	opacity: 1;
}

.project-card:hover .project-img img {
	transform: scale(1.1);
}

/* Project Grid Container */
.project .row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
	.project .row {
		grid-template-columns: 1fr;
	}

	.project-card {
		padding: 2rem;
		min-height: 280px;
	}

	.project-img {
		flex: 0 0 160px;
	}

	.project-img img {
		height: 160px;
	}
}

@media (max-width: 767.98px) {
	.project-card {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem;
		gap: 1.5rem;
	}

	.project-img {
		width: 100%;
		max-width: 240px;
		margin: 0 auto;
	}

	.project-text {
		text-align: center;
	}

	.project-text h4 {
		font-size: 1.25rem;
	}
}

/*** Project End ***/

/*** About Start ***/
.about-section {
	background: var(--bs-gray-100);
	padding: 60px 0;
}

.about-title {
	font-size: 2rem;
	font-weight: bold;
	color: var(--bs-dark);
	margin-bottom: 15px;
}

.about-subtitle {
	font-size: 1.2rem;
	color: var(--bs-gray-700);
	margin-bottom: 20px;
	line-height: 1.5;
}

/* Certifications */
.about-certifications {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.certification-item {
	display: flex;
	align-items: center;
	background: white;
	padding: 8px 12px;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	font-weight: bold;
	color: var(--bs-dark);
	transition: transform 0.2s ease;
}

.certification-item i {
	color: var(--bs-primary);
	margin-right: 8px;
	font-size: 1.3rem;
}

.certification-item:hover {
	transform: translateY(-3px);
}

/* Button */
.about-btn {
	display: inline-block;
	padding: 12px 24px;
	background: var(--bs-primary);
	color: white;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.3s ease;
}

.about-btn:hover {
	background: var(--bs-secondary);
}

/* Image */
.about-img {
	max-width: 85%;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.about-img:hover {
	transform: scale(1.05);
}

/* Trust & Credibility Section */
.trust-section {
	background: #f8fafc;
	padding: 6rem 0;
}

.trust-metrics {
	margin: 3rem 0;
}

.trust-metric {
	text-align: center;
	padding: 2rem 1rem;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trust-metric:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	border-color: #cbd5e1;
}

.trust-number {
	font-size: 2.25rem;
	font-weight: 700;
	color: #2563eb;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.trust-label {
	font-size: 0.875rem;
	color: #64748b;
	font-weight: 500;
}

/* Technical Credibility Section */
.technical-credibility {
	margin-top: 3rem;
	padding: 2rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.05));
	border-radius: 16px;
	border: 1px solid rgba(37, 99, 235, 0.1);
}

.tech-metric {
	text-align: center;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 1px solid rgba(37, 99, 235, 0.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tech-metric:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
	border-color: rgba(37, 99, 235, 0.2);
}

.tech-number {
	font-size: 2rem;
	font-weight: 700;
	color: var(--bs-primary);
	margin-bottom: 0.25rem;
	line-height: 1;
}

.tech-label {
	font-size: 0.85rem;
	color: var(--neutral-700);
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.tech-subtitle {
	font-size: 0.75rem;
	color: var(--neutral-500);
	font-weight: 400;
}

@media (max-width: 768px) {
	.technical-credibility {
		padding: 1.5rem;
		margin-top: 2rem;
	}
	
	.tech-metric {
		padding: 1rem;
	}
	
	.tech-number {
		font-size: 1.5rem;
	}
	
	.tech-label {
		font-size: 0.8rem;
	}
	
	.tech-subtitle {
		font-size: 0.7rem;
	}
}

/* Technology Page Styles */
.technology-hero-section {
	background: linear-gradient(135deg, var(--neutral-100) 0%, rgba(37, 99, 235, 0.03) 100%);
}

.technology-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.badge-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(37, 99, 235, 0.1);
	border-radius: 25px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--neutral-700);
}

.codebase-stats-showcase {
	display: grid;
	gap: 2rem;
}

.stat-highlight-large {
	text-align: center;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 16px;
	border: 1px solid rgba(37, 99, 235, 0.1);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number-large {
	font-size: 3rem;
	font-weight: 700;
	color: var(--bs-primary);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label-large {
	font-size: 1.125rem;
	color: var(--neutral-700);
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.stat-subtitle {
	font-size: 0.875rem;
	color: var(--neutral-500);
}

.codebase-metric {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid rgba(37, 99, 235, 0.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.codebase-metric:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.metric-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
	color: white;
	border-radius: 12px;
	font-size: 1.25rem;
}

.metric-content {
	flex: 1;
}

.metric-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--bs-primary);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.metric-label {
	font-size: 0.875rem;
	color: var(--neutral-700);
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.metric-subtitle {
	font-size: 0.75rem;
	color: var(--neutral-500);
}

.tech-stack-grid {
	display: grid;
	gap: 2rem;
}

.tech-category {
	background: rgba(255, 255, 255, 0.8);
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid rgba(37, 99, 235, 0.1);
}

.tech-category-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--neutral-800);
	margin-bottom: 1rem;
}

.tech-items {
	display: grid;
	gap: 0.75rem;
}

.tech-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.tech-item:hover {
	background: rgba(37, 99, 235, 0.05);
}

.tech-item i {
	color: var(--bs-primary);
	width: 20px;
}

.tech-item span {
	font-size: 0.875rem;
	color: var(--neutral-700);
	font-weight: 500;
}

.architecture-layers {
	display: grid;
	gap: 1rem;
}

.layer {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	border: 1px solid rgba(37, 99, 235, 0.1);
	transition: all 0.3s ease;
}

.layer:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.layer-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
	color: white;
	border-radius: 12px;
	font-size: 1.25rem;
}

.layer-content h5 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--neutral-800);
	margin-bottom: 0.25rem;
}

.layer-content p {
	font-size: 0.875rem;
	color: var(--neutral-600);
	margin: 0;
}

.performance-metric {
	text-align: center;
	padding: 2rem;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid rgba(37, 99, 235, 0.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.performance-metric:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}

.metric-icon-large {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
	color: white;
	border-radius: 50%;
	font-size: 2rem;
	margin: 0 auto 1rem;
}

.metric-number-large {
	font-size: 2rem;
	font-weight: 700;
	color: var(--bs-primary);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.metric-label-large {
	font-size: 1rem;
	color: var(--neutral-700);
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.excellence-metrics {
	display: grid;
	gap: 1.5rem;
}

.excellence-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	border: 1px solid rgba(37, 99, 235, 0.1);
	transition: all 0.3s ease;
}

.excellence-item:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.excellence-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
	color: white;
	border-radius: 12px;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.excellence-content h5 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--neutral-800);
	margin-bottom: 0.5rem;
}

.excellence-content p {
	font-size: 0.875rem;
	color: var(--neutral-600);
	margin: 0;
}

.development-stats {
	display: grid;
	gap: 1.5rem;
}

.stat-card-large {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 16px;
	border: 1px solid rgba(37, 99, 235, 0.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.stat-card-large:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.stat-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.stat-header i {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
	color: white;
	border-radius: 10px;
	font-size: 1rem;
}

.stat-header h4 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--neutral-800);
	margin: 0;
}

.stat-card-large p {
	font-size: 0.875rem;
	color: var(--neutral-600);
	margin: 0;
}

.tech-cta-section {
	background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
}

@media (max-width: 768px) {
	.technology-badges {
		justify-content: center;
	}
	
	.badge-item {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}
	
	.stat-number-large {
		font-size: 2rem;
	}
	
	.stat-label-large {
		font-size: 1rem;
	}
	
	.codebase-metric {
		padding: 1rem;
	}
	
	.metric-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
	
	.metric-number {
		font-size: 1.25rem;
	}
	
	.layer {
		padding: 1rem;
	}
	
	.layer-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
	
	.performance-metric {
		padding: 1.5rem;
	}
	
	.metric-icon-large {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
	
	.metric-number-large {
		font-size: 1.5rem;
	}
	
	.excellence-item {
		padding: 1rem;
	}
	
	.excellence-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
	
	.stat-card-large {
		padding: 1.5rem;
	}
}

.compliance-badges {
	margin-top: 2rem;
}

.compliance-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1.25rem;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #475569;
	transition: all 0.3s ease;
}

.compliance-badge:hover {
	background: #f1f5f9;
	border-color: #cbd5e1;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.trust-visual img {
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Enterprise CTA Section */
.enterprise-cta-section {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.enterprise-cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(ellipse at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
		radial-gradient(ellipse at 30% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
	z-index: 1;
}

.enterprise-cta-section .container {
	position: relative;
	z-index: 2;
}

.benefit-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 25px;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.benefit-tag:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-1px);
}

.cta-actions-enterprise {
	text-align: center;
}

.contact-alternative {
	margin-top: 1.5rem;
}

.contact-alternative a {
	font-size: 1.125rem;
	transition: all 0.3s ease;
}

.contact-alternative a:hover {
	color: #60a5fa !important;
}

/* Professional CTA Section */
.cta-section {
	background: linear-gradient(135deg, var(--neutral-100) 0%, rgba(37, 99, 235, 0.03) 100%);
	position: relative;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--primary-600), transparent);
	opacity: 0.3;
}

.cta-benefits {
	margin: 1.5rem 0;
}

.benefit-item {
	background: rgba(255, 255, 255, 0.8);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	border: 1px solid rgba(37, 99, 235, 0.1);
	transition: all 0.3s ease;
}

.benefit-item:hover {
	background: rgba(255, 255, 255, 1);
	box-shadow: var(--shadow-sm);
	transform: translateY(-1px);
}

.cta-actions {
	background: rgba(255, 255, 255, 0.8);
	padding: 2rem;
	border-radius: 16px;
	border: 1px solid rgba(37, 99, 235, 0.1);
	box-shadow: var(--shadow-md);
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
	.hero-section-modern {
		padding: 1.5rem 0 1rem;
		min-height: auto;
	}

	.hero-headline {
		font-size: 1.75rem;
		margin-bottom: 0.75rem;
		line-height: 1.2;
	}

	.hero-subtitle {
		font-size: 0.95rem;
		margin-bottom: 1rem;
	}

	.benefits-grid .row {
		gap: 1rem;
	}

	.benefit-item-modern {
		padding: 1rem;
	}

	.benefit-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.hero-cta-modern {
		text-align: center;
		margin: 2rem 0;
	}

	.btn-primary-modern,
	.btn-secondary-modern {
		display: inline-block;
		margin: 0.5rem;
		padding: 0.875rem 1.5rem;
		font-size: 0.875rem;
	}

	.product-showcase {
		margin-top: 2rem;
	}

	.showcase-tabs {
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.tab {
		flex: 1;
		min-width: 100px;
		text-align: center;
		padding: 0.5rem 1rem;
		font-size: 0.8rem;
	}

	.showcase-content {
		padding: 1.5rem;
	}

	.document-flow-modern {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}

	.flow-arrow .arrow-line {
		width: 20px;
		transform: rotate(90deg);
	}

	.integration-hub {
		width: 160px;
		height: 160px;
	}

	.center-hub {
		width: 60px;
		height: 60px;
	}

	.integration-point {
		width: 50px;
		height: 50px;
	}

	.floating-stats {
		position: static;
		justify-content: center;
		margin-top: 2rem;
	}

	.client-logos {
		justify-content: center;
	}

	.solutions-section,
	.trust-section,
	.enterprise-cta-section {
		padding: 4rem 0;
	}

	.solution-card-enterprise {
		padding: 2rem;
		margin-bottom: 2rem;
	}

	.solution-header {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.solution-icon {
		margin: 0 auto;
	}

	.trust-metric {
		padding: 1.5rem 1rem;
	}

	.trust-number {
		font-size: 1.875rem;
	}

	.enterprise-cta-section .cta-benefits {
		justify-content: center;
	}

	.benefit-tag {
		margin-bottom: 0.5rem;
	}
}

.professional-solution-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.professional-solution-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.professional-solution-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 255, 255, 0.3);
}

.professional-solution-card:hover::before {
	opacity: 1;
}

.solution-icon-pro {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.professional-solution-card:hover .solution-icon-pro {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.solution-title-pro {
	color: white;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.solution-subtitle-pro {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}

.feature-list li {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
}

.feature-list li i {
	color: var(--accent-500);
	margin-right: 0.5rem;
	font-size: 0.75rem;
}

.solution-benefit {
	background: rgba(16, 185, 129, 0.2);
	padding: 0.75rem 1rem;
	border-radius: 8px;
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: white;
	font-size: 0.875rem;
	margin-top: auto;
}

.solution-benefit strong {
	color: var(--accent-500);
}

/* Responsive */
@media (max-width: 768px) {
	.about-section .row {
		text-align: center;
	}

	.about-img {
		max-width: 100%;
	}

	.about-certifications {
		justify-content: center;
	}

	.cta-benefits {
		justify-content: center;
	}

	.cta-actions {
		margin-top: 2rem;
		text-align: center !important;
	}

	/* Professional Solutions Mobile */
	.professional-solution-card {
		margin-bottom: 1.5rem;
	}

	.solution-icon-pro {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}

	.solution-title-pro {
		font-size: 1.125rem;
	}

	.professional-solutions-section {
		padding: 3rem 0 !important;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.about-section .row {
		text-align: center;
	}

	.about-img {
		max-width: 100%;
	}
}

/** About End ***/

/*** Contact Start ***/
.contact-section {
	background: linear-gradient(135deg, #f8f9fa, #e0f7fa);
	padding: 80px 0;
}

.contact-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--bs-primary);
	margin: 2rem 0 1rem;
}

.contact-subtitle {
	font-size: 1.2rem;
	color: var(--bs-gray-600);
	margin-bottom: 3rem;
}

.contact-cards {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.contact-card {
	background: #FFFFFF;
	border-radius: 16px;
	padding: 2.5rem;
	height: 100%;
	margin-bottom: 1.5rem;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid rgba(3, 82, 139, 0.05);
	box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: relative;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 32px -1px rgba(0, 0, 0, 0.15);
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(3, 82, 139, 0.02), rgba(0, 217, 255, 0.02));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.contact-card:hover::before {
	opacity: 1;
}

.card-content {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.icon-wrapper {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--bs-primary), var(--neon-blue));
	color: #FFFFFF;
	font-size: 1.75rem;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
}

.icon-wrapper::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.contact-card:hover .icon-wrapper::after {
	opacity: 1;
}

.icon-wrapper i {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

.contact-card:hover .icon-wrapper i {
	transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
	color: var(--bs-gray-900);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
}

.contact-card p {
	color: var(--bs-gray-700);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.contact-details {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-details li {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	color: var(--bs-gray-700);
	font-size: 1rem;
}

.contact-details li:last-child {
	border-bottom: none;
}

.contact-details li i {
	color: var(--bs-primary);
	font-size: 1.1rem;
	transition: transform 0.3s ease;
}

.contact-details li:hover i {
	transform: translateX(5px);
	color: var(--neon-blue);
}

.contact-link {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact-link .company-text {
	display: block;
	padding: 1.25rem;
	margin-bottom: 0.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	font-size: 0.95rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contact-link a {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.contact-link a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	transform: translateX(5px);
	letter-spacing: normal;
}

.contact-link i {
	color: var(--neon-blue);
	font-size: 1.25rem;
	transition: all 0.3s ease;
}

.contact-link a:hover i {
	color: var(--neon-green);
	transform: scale(1.1);
}

.contact-link span {
	font-size: 0.95rem;
	line-height: 1.5;
}

@media (max-width: 767.98px) {
	.contact-card {
		padding: 1.75rem;
	}

	.card-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1.5rem;
	}

	.contact-details li {
		justify-content: center;
	}

	.contact-link {
		text-align: center;
	}

	.contact-link a {
		justify-content: center;
	}

	.contact-link .company-text {
		text-align: center;
	}
}

/*** Contact End ***/

/*** Partners Start ***/
.partners-section {
	background-color: #f8f9fa;
	padding: 80px 0;
}

.partners-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--bs-primary);
	margin: 2rem 0 1rem;
	text-align: center;
}

.partners-subtitle {
	font-size: 1.2rem;
	color: var(--bs-gray-600);
	margin-bottom: 3rem;
	text-align: center;
}

.partner-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1rem;
}

.partner-item {
	text-align: center;
	transition: transform 0.3s ease;
}

.partner-item:hover {
	transform: translateY(-5px);
}

.partner-logo {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.partner-logo img {
	max-width: 180px;
	max-height: 100%;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}

.partner-item:hover .partner-logo img {
	filter: grayscale(0%);
	transform: scale(1.05);
}

.partner-name {
	font-size: 1.2rem;
	color: var(--bs-gray-700);
	margin-top: 1rem;
	font-weight: 500;
}

@media (max-width: 991.98px) {
	.partners-section {
		padding: 60px 0;
	}

	.partners-title {
		font-size: 2rem;
	}

	.partner-grid {
		gap: 2rem;
	}
}

@media (max-width: 767.98px) {
	.partners-section {
		padding: 40px 0;
	}

	.partner-logo {
		height: 100px;
	}

	.partner-logo img {
		max-width: 150px;
	}
}

/*** Partners End ***/

/*** Footer Start ***/
.footer {
	background: linear-gradient(to right, var(--bs-dark), #1a1a1a);
	position: relative;
	overflow: hidden;
	padding: 4rem 0 2rem;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(0, 217, 255, 0.05), rgba(46, 255, 130, 0.05));
	pointer-events: none;
}

.footer .container {
	position: relative;
	z-index: 1;
}

/* Common Footer Box Styles */
.footer-box {
	height: 100%;
	min-height: 300px;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	text-align: left;
}

.footer-box:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Section Headers */
.footer .h3.text-secondary {
	position: relative;
	display: inline-block;
	margin-bottom: 2rem;
	font-weight: 600;
	color: var(--neon-blue) !important;
	font-size: 1.5rem;
	text-transform: none;
	text-align: left;
	width: 100%;
}

.footer .h3.text-secondary::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(to right, var(--neon-blue), var(--neon-green));
	transform: none;
}

/* Links Styling */
.footer .short-link,
.footer .help-link {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
	align-items: flex-start;
}

.footer .short-link a,
.footer .help-link a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 1rem;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	width: 100%;
	text-align: left;
}

.footer .short-link a:hover,
.footer .help-link a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
	transform: translateX(5px);
}

.footer .short-link a i,
.footer .help-link a i {
	color: var(--neon-blue);
	margin-right: 1rem;
	transition: all 0.3s ease;
	width: 1.5rem;
	text-align: center;
}

.footer .short-link a:hover i,
.footer .help-link a:hover i {
	color: var(--neon-green);
	transform: scale(1.1);
}

/* Contact Section */
.footer .contact-link {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
}

.footer .contact-link a {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	transition: all 0.3s ease;
	width: 100%;
	text-align: left;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
	hyphens: auto;
}

.footer .contact-link a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
	transform: translateX(5px);
}

.footer .contact-link i {
	color: var(--neon-blue);
	font-size: 1.25rem;
	transition: all 0.3s ease;
	flex-shrink: 0;
	width: 1.5rem;
	text-align: center;
	margin-top: 0.2rem;
}

.footer .contact-link a:hover i {
	color: var(--neon-green);
	transform: scale(1.1);
}

.footer .contact-link span {
	font-size: 0.95rem;
	line-height: 1.5;
	flex: 1;
	text-align: left;
	min-width: 0;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
	hyphens: auto;
}

/* Logo Section */
.footer .footer-logo {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 2rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.footer .footer-logo:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-3px);
}

.footer .footer-logo img {
	max-height: 60px;
	width: auto;
	filter: brightness(1);
	transition: all 0.3s ease;
}

.footer .footer-logo:hover img {
	transform: scale(1.05);
	filter: brightness(1.2);
}

/* Company Details */
.footer .company-details {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
	align-items: stretch;
	width: 100%;
}

.footer .detail-item {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 10px;
	transition: all 0.3s ease;
	width: 100%;
}

.footer .detail-item:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateX(5px);
}

.footer .detail-item i {
	color: var(--neon-blue);
	font-size: 1.1rem;
	width: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 0.2rem;
}

.footer .detail-item:hover i {
	color: var(--neon-green);
	transform: scale(1.1);
}

.footer .detail-item span {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	line-height: 1.5;
	text-align: left;
	flex: 1;
	min-width: 0;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
	hyphens: auto;
}

@media (max-width: 767.98px) {
	.footer .detail-item {
		justify-content: flex-start;
		text-align: left;
	}

	.footer .detail-item span {
		text-align: left;
	}
}

/* Copyright Section */
.footer .copyright {
	position: relative;
	margin-top: 3rem;
	padding: 1.5rem 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	background: rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.footer .copyright::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--neon-blue), transparent);
}

.footer .copyright a {
	color: var(--neon-blue);
	transition: all 0.3s ease;
	text-decoration: none;
}

.footer .copyright a:hover {
	color: var(--neon-green);
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 48px;
	/* Even number for perfect circle */
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bs-primary), var(--neon-blue));
	color: #fff;
	border-radius: 50%;
	/* Perfect circle */
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 99;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
	font-size: 1.25rem;
	transition: all 0.3s ease;
}

.back-to-top:hover i {
	transform: translateY(-2px);
}

@media (max-width: 767.98px) {
	.back-to-top {
		right: 15px;
		bottom: 15px;
		width: 40px;
		/* Even number for perfect circle */
		height: 40px;
	}

	.back-to-top i {
		font-size: 1rem;
	}
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
	.footer-box {
		min-height: 280px;
		padding: 1.5rem;
	}
}

@media (max-width: 767.98px) {
	.footer {
		padding: 3rem 0 1.5rem;
	}

	.footer-box {
		min-height: auto;
		padding: 1.25rem;
		text-align: left;
	}

	.footer .h3.text-secondary {
		text-align: left;
	}

	.footer .h3.text-secondary::after {
		left: 0;
		transform: none;
	}

	.footer .short-link a,
	.footer .help-link a,
	.footer .contact-link a,
	.footer .detail-item {
		justify-content: flex-start;
		text-align: left;
		padding: 0.75rem;
	}

	.footer .company-details {
		align-items: flex-start;
	}

	.footer .footer-logo {
		justify-content: flex-start;
	}

	.footer .copyright {
		margin-top: 2rem;
	}

	.back-to-top {
		right: 15px;
		bottom: 15px;
		width: 40px;
		height: 40px;
	}

	.back-to-top i {
		font-size: 1rem;
	}
}

/*** Footer End ***/

/*** Section Title ***/
.section-title {
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 600;
}

.section-title::before {
	position: absolute;
	content: "";
	width: calc(100% + 80px);
	height: 2px;
	top: 5px;
	left: -40px;
	background: var(--bs-primary);
	z-index: -1;
}

.section-title::after {
	position: absolute;
	content: "";
	width: calc(100% + 120px);
	height: 2px;
	bottom: 6px;
	left: -60px;
	background: var(--bs-primary);
	z-index: -1;
}

.section-title.text-start::before {
	width: calc(100% + 40px);
	left: 0;
}

.section-title.text-start::after {
	width: calc(100% + 60px);
	left: 0;
}

/*** About ***/
.about-experience {
	position: absolute;
	width: 100%;
	height: 100%;
	right: -45px;
	bottom: -45px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/*** Service ***/
.service-item {
	position: relative;
	border-radius: 8px;
	box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 8px;
	overflow: hidden;
	z-index: -1;
}

.service-item .service-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	object-fit: cover;
	border-radius: 8px;
}

.service-item .service-img::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	border-radius: 8px;
}

.service-item .service-detail {
	position: relative;
	padding: 30px;
	text-align: center;
	background: rgba(255, 255, 255, .9);
}

/*** Feature ***/
@media (min-width: 992px) {
	.container.feature {
		max-width: 100% !important;
	}

	.feature-text {
		padding-left: calc(((100% - 960px) / 2) + .75rem);
	}
}

@media (min-width: 1200px) {
	.feature-text {
		padding-left: calc(((100% - 1140px) / 2) + .75rem);
	}
}

@media (min-width: 1400px) {
	.feature-text {
		padding-left: calc(((100% - 1320px) / 2) + .75rem);
	}
}

/*** Team ***/
.team-item img {
	position: relative;
	top: 0;
	transition: .5s;
}

.team-item:hover img {
	top: -30px;
}

.team-item .team-text {
	position: relative;
	height: 100px;
	transition: .5s;
}

.team-item:hover .team-text {
	margin-top: -60px;
	height: 160px;
}

.team-item .team-text .team-social {
	opacity: 0;
	transition: .5s;
}

.team-item:hover .team-text .team-social {
	opacity: 1;
}

.team-item .team-social .btn {
	display: inline-flex;
	color: var(--bs-primary);
	background: var(--bs-light);
	border-radius: 40px;
}

.team-item .team-social .btn:hover {
	color: #FFFFFF;
	background: var(--bs-primary);
}

/*** Custom Styles ***/
.hover-lift {
	transition: transform 0.3s ease;
}

.hover-lift:hover {
	transform: translateY(-5px);
}

.scale-up {
	transition: transform 0.3s ease;
}

.scale-up:hover {
	transform: scale(1.05);
}

.shadow-hover {
	transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.text-gradient {
	background: linear-gradient(45deg, var(--bs-primary), var(--bs-secondary));
	-webkit-text-fill-color: transparent;
}

.bg-gradient-primary {
	background: linear-gradient(45deg, var(--bs-primary), var(--bs-info));
}

.bg-gradient-secondary {
	background: linear-gradient(45deg, var(--bs-secondary), var(--bs-success));
}

.navbar-toggler {
	color: var(--bs-dark) !important;
	border-color: var(--bs-gray-400) !important;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 62, 80, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.card {
	transition: all 0.3s ease;
	height: 100%;
	background: #fff;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-body {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100%;
}

.card-body i {
	font-size: 4rem;
	color: var(--bs-primary);
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.card:hover i {
	transform: scale(1.1);
	color: var(--neon-blue);
}

.card-body h4 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--bs-gray-800);
	font-weight: 600;
}

.card-body p {
	color: var(--bs-gray-600);
	margin-bottom: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.card-body ul {
	text-align: left;
	padding-left: 1.5rem;
}

.card-body ul li {
	margin-bottom: 0.5rem;
	color: var(--bs-gray-600);
}

@media (max-width: 767.98px) {
	.card {
		margin-bottom: 1rem;
	}

	.card-body {
		padding: 1.5rem;
	}

	.card-body i {
		font-size: 3rem;
		margin-bottom: 1rem;
	}

	.card-body h4 {
		font-size: 1.1rem;
	}
}

/* Service page specific styles */
.services .card {
	min-height: 300px;
	margin-bottom: 2rem;
}

.services .card-body {
	padding: 2.5rem;
}

.services .card-body i {
	font-size: 5rem;
}

.services .card-body h4 {
	font-size: 1.4rem;
	margin: 1.5rem 0;
}

.services .card-body p {
	font-size: 1rem;
}

.services .card-body ul {
	margin-top: 1rem;
}

@media (max-width: 991.98px) {
	.services .card {
		min-height: 280px;
	}

	.services .card-body {
		padding: 2rem;
	}
}

@media (max-width: 767.98px) {
	.services .card {
		min-height: 260px;
	}

	.services .card-body {
		padding: 1.5rem;
	}

	.services .card-body i {
		font-size: 4rem;
	}

	.services .card-body h4 {
		font-size: 1.2rem;
	}
}

/* Enterprise Services Page Styling */
.services-enterprise {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 5rem 0;
}

.services-enterprise .section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.services-enterprise .section-header h2 {
	font-size: 2.5rem;
	color: var(--bs-gray-900);
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.services-enterprise .section-header h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--bs-primary), var(--neon-blue));
	border-radius: 2px;
}

.services-enterprise .section-header p {
	font-size: 1.1rem;
	color: var(--bs-gray-600);
	max-width: 700px;
	margin: 1rem auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	padding: 0 1rem;
}

.service-item-enterprise {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.1);
	height: 100%;
}

.service-item-enterprise:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 32px -1px rgba(0, 0, 0, 0.15);
}

.service-item-enterprise .service-header {
	background: linear-gradient(45deg, rgba(3, 82, 139, 0.05), rgba(0, 217, 255, 0.05));
	padding: 2rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.service-item-enterprise .service-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bs-primary), var(--neon-blue));
	border-radius: 16px;
	color: #fff;
	font-size: 1.75rem;
	transition: all 0.3s ease;
}

.service-item-enterprise:hover .service-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
}

.service-item-enterprise .service-title {
	flex: 1;
}

.service-item-enterprise .service-title h3 {
	font-size: 1.5rem;
	color: var(--bs-gray-900);
	margin: 0;
	font-weight: 600;
}

.service-item-enterprise .service-title span {
	font-size: 0.95rem;
	color: var(--bs-gray-600);
	display: block;
	margin-top: 0.5rem;
}

.service-item-enterprise .service-content {
	padding: 2rem;
}

.service-item-enterprise .service-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-item-enterprise .service-features li {
	padding: 0.75rem 0;
	color: var(--bs-gray-700);
	display: flex;
	align-items: center;
	gap: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item-enterprise .service-features li:last-child {
	border-bottom: none;
}

.service-item-enterprise .service-features i {
	color: var(--bs-primary);
	font-size: 1.1rem;
}

.service-item-enterprise .service-action {
	padding: 1.5rem 2rem;
	background: linear-gradient(45deg, rgba(3, 82, 139, 0.03), rgba(0, 217, 255, 0.03));
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	text-align: center;
}

.service-item-enterprise .service-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, var(--bs-primary), var(--neon-blue));
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.service-item-enterprise .service-btn:hover {
	background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
	transform: translateY(-2px);
}

.service-item-enterprise .service-btn i {
	font-size: 1.1rem;
	transition: transform 0.3s ease;
}

.service-item-enterprise .service-btn:hover i {
	transform: translateX(4px);
}

@media (max-width: 991.98px) {
	.services-enterprise {
		padding: 4rem 0;
	}

	.services-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 1.5rem;
	}
}

@media (max-width: 767.98px) {
	.services-enterprise {
		padding: 3rem 0;
	}

	.services-enterprise .section-header h2 {
		font-size: 2rem;
	}

	.service-item-enterprise .service-header {
		padding: 1.5rem;
	}

	.service-item-enterprise .service-icon {
		width: 56px;
		height: 56px;
		font-size: 1.5rem;
	}

	.service-item-enterprise .service-title h3 {
		font-size: 1.25rem;
	}

	.service-item-enterprise .service-content {
		padding: 1.5rem;
	}
}

/*** Footer Start ***/
/* Company Details */
.footer .company-details {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer .detail-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 8px;
	transition: all 0.3s ease;
}

.footer .detail-item:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateX(5px);
}

.footer .detail-item i {
	color: var(--neon-blue);
	font-size: 1.1rem;
	width: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.footer .detail-item:hover i {
	color: var(--neon-green);
	transform: scale(1.1);
}

.footer .detail-item span {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	line-height: 1.5;
}

@media (max-width: 767.98px) {
	.footer .detail-item {
		justify-content: center;
	}
}

/*** Footer End ***/

/* Common Transitions */
.transition-base {
	transition: all 0.3s ease;
}

/* Common Hover Effects */
.hover-lift {
	transition: transform 0.3s ease;
}

.hover-lift:hover {
	transform: translateY(-5px);
}

.hover-glow {
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hover-glow:hover {
	box-shadow: 0 8px 25px rgba(0, 217, 255, 0.15);
	transform: translateY(-5px);
}

/* Common Card Styles */
.card-base {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.card-base:hover {
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 217, 255, 0.15);
}

/* Common Icon Styles */
.icon-base {
	transition: all 0.3s ease;
	position: relative;
}

.icon-base:hover {
	transform: scale(1.1);
	color: var(--neon-green);
}

/* Common Button Styles */
.btn-base {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.8rem 1.6rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: none;
}

.btn-base:hover {
	transform: translateY(-3px);
}

/* Update service-card to use common classes */
.service-card {
	@extend .card-base;
	position: relative;
	padding: 2rem 1.5rem;
	height: 220px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	overflow: hidden;
}

.service-icon {
	@extend .icon-base;
	font-size: 2.5rem;
	color: var(--neon-blue);
	margin: 0;
}

/* Update button styles to use common classes */
.btn {
	@extend .btn-base;
}

/* Consolidate media queries */
@media (max-width: 767.98px) {

	.service-card,
	.solution-card,
	.benefit-card {
		padding: 1.5rem;
		height: auto;
		min-height: 200px;
	}

	.service-icon,
	.solution-icon,
	.benefit-icon {
		font-size: 2rem;
	}

	.footer-box,
	.contact-card {
		min-height: auto;
		padding: 1.25rem;
	}

	.back-to-top {
		right: 15px;
		bottom: 15px;
		width: 40px;
		height: 40px;
	}

	.back-to-top i {
		font-size: 1rem;
	}
}

/* Remove duplicate declarations */
.scale-up {
	@extend .hover-lift;
}

.shadow-hover {
	@extend .hover-glow;
}

/* Modern Hero Section */
.hero-section-modern {
	position: relative;
	background: #ffffff;
	padding: 60px 0 40px;
	overflow: hidden;
	min-height: auto;
}

/* Background Elements */
.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
}

.bg-gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(to top, rgba(248, 250, 252, 0.8) 0%, transparent 100%);
}

.hero-section-modern .container {
	position: relative;
	z-index: 2;
}

/* Industry Badge */
.industry-badge {
	margin-bottom: 1.5rem;
}

.badge-modern {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	border: 1px solid #cbd5e1;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	color: #475569;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.badge-modern:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Hero Headline */
.hero-headline {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.2;
	color: #1e293b;
	margin-bottom: 1rem;
}

.gradient-text {
	background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
	font-size: 1.1rem;
	line-height: 1.5;
	color: #64748b;
	max-width: 550px;
}

/* Benefits Grid */
.benefits-grid {
	margin: 2rem 0;
}

.benefit-item-modern {
	display: flex;
	align-items: flex-start;
	padding: 1rem;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.benefit-item-modern:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
	border-color: #cbd5e1;
}

.benefit-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
	color: white;
	font-size: 1rem;
	margin-right: 0.75rem;
	flex-shrink: 0;
}

.benefit-content {
	flex: 1;
}

.benefit-title {
	font-size: 1rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.25rem;
}

.benefit-desc {
	font-size: 0.875rem;
	color: #64748b;
	margin: 0;
	line-height: 1.4;
}

/* Modern CTA Buttons */
.hero-cta-modern {
	margin: 2rem 0;
}

.btn-primary-modern {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
	transition: all 0.3s ease;
	border: none;
}

.btn-primary-modern:hover {
	background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
	color: white;
	text-decoration: none;
}

.btn-secondary-modern {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1.5rem;
	background: #ffffff;
	color: #475569;
	text-decoration: none;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

.btn-secondary-modern:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	color: #334155;
	text-decoration: none;
}

/* Social Proof */
.social-proof {
	margin-top: 3rem;
}

.social-proof-text {
	font-size: 0.875rem;
	color: #64748b;
	margin-bottom: 1rem;
	font-weight: 500;
}

.client-logos {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.logo-item {
	padding: 0.5rem 1rem;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #475569;
	transition: all 0.3s ease;
}

.logo-item:hover {
	background: #e2e8f0;
	color: #334155;
}

/* Modern Product Showcase */
.hero-visual-modern {
	position: relative;
	padding: 2rem;
}

.product-showcase {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 0;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.showcase-header {
	padding: 1.5rem 2rem 0;
	border-bottom: 1px solid #f1f5f9;
}

.showcase-tabs {
	display: flex;
	gap: 1rem;
}

.tab {
	padding: 0.75rem 1.5rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #64748b;
	cursor: pointer;
	transition: all 0.3s ease;
}

.tab.active,
.tab:hover {
	background: #2563eb;
	color: white;
	border-color: #2563eb;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Showcase Content */
.showcase-content {
	padding: 2rem;
	min-height: 300px;
}

.tab-content {
	display: none;
	animation: fadeIn 0.3s ease;
}

.tab-content.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Document Flow Visualization */
.document-flow-modern {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.document {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	min-width: 80px;
	transition: all 0.3s ease;
}

.document:hover {
	background: #f1f5f9;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.document i {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #475569;
}

.document span {
	font-size: 0.75rem;
	font-weight: 600;
	color: #64748b;
}

.security-shield {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.5rem;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	border-radius: 16px;
	min-width: 100px;
	color: white;
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.security-shield i {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.security-shield span {
	font-size: 0.875rem;
	font-weight: 700;
}

.flow-arrow {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.arrow-line {
	width: 40px;
	height: 2px;
	background: #cbd5e1;
	position: relative;
}

.arrow-line::after {
	content: '';
	position: absolute;
	right: -6px;
	top: -3px;
	width: 0;
	height: 0;
	border-left: 8px solid #cbd5e1;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}

.encryption-badge,
.signature-badge {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem 0.75rem;
	background: #10b981;
	color: white;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-top: 0.5rem;
	box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Compliance Visualization */
.compliance-items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.compliance-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.compliance-item:hover {
	background: #f1f5f9;
	border-color: #cbd5e1;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.compliance-item i {
	font-size: 1.25rem;
}

.compliance-item span {
	font-size: 0.875rem;
	font-weight: 600;
	color: #475569;
}

/* Integration Visualization */
.integration-hub {
	position: relative;
	width: 200px;
	height: 200px;
	margin: 0 auto;
}

.center-hub {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.center-hub i {
	font-size: 1.5rem;
	margin-bottom: 0.25rem;
}

.center-hub span {
	font-size: 0.75rem;
	font-weight: 700;
}

.integration-point {
	position: absolute;
	width: 60px;
	height: 60px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.integration-point:hover {
	background: #f1f5f9;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.integration-point i {
	font-size: 1.25rem;
	color: #475569;
	margin-bottom: 0.25rem;
}

.integration-point span {
	font-size: 0.625rem;
	font-weight: 600;
	color: #64748b;
}

.integration-point.top {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.integration-point.right {
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.integration-point.bottom {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.integration-point.left {
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

/* Floating Stats */
.floating-stats {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	display: flex;
	gap: 1rem;
}

.stat-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 1rem;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2563eb;
	margin-bottom: 0.25rem;
}

.stat-label {
	font-size: 0.75rem;
	color: #64748b;
	font-weight: 500;
}

/* Hero Badges */
.hero-badges {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.hero-badges .badge {
	padding: 0.75rem 1.25rem;
	font-size: 1rem;
	font-weight: 500;
	border-radius: 2rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.hero-badges .badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px var(--glow-primary);
}

/* Enterprise Solutions Section */
.solutions-section {
	background: #ffffff;
	padding: 6rem 0;
}

.py-6 {
	padding-top: 4rem !important;
	padding-bottom: 4rem !important;
}

.mb-6 {
	margin-bottom: 4rem !important;
}

.mt-6 {
	margin-top: 4rem !important;
}

.enterprise-stats {
	margin-top: 2rem;
}

.stat-card {
	text-align: center;
	padding: 2rem 1rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	transition: all 0.3s ease;
}

.stat-card:hover {
	background: #f1f5f9;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.875rem;
	color: #64748b;
	font-weight: 500;
}

/* Solution Cards Enterprise */
.solution-card-enterprise {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 2.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.solution-card-enterprise:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	border-color: #cbd5e1;
}

.solution-header {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
	gap: 1.5rem;
}

.solution-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.solution-content {
	flex: 1;
}

.solution-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #1e293b;
}

.solution-subtitle {
	color: #64748b;
	font-size: 1rem;
	margin-bottom: 0;
}

.feature-list-enterprise {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
}

.feature-list-enterprise li {
	padding: 0.75rem 0;
	border-bottom: 1px solid #f1f5f9;
	color: #475569;
	font-size: 0.95rem;
	position: relative;
	padding-left: 1.5rem;
}

.feature-list-enterprise li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: 600;
}

.feature-list-enterprise li:last-child {
	border-bottom: none;
}

.solution-impact {
	background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
	border: 1px solid #bbf7d0;
	border-radius: 12px;
	padding: 1rem 1.5rem;
	text-align: center;
	margin-top: auto;
}

/* Product Visualization */
.product-visualization {
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.visualization-container {
	position: relative;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 2rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Document Flow Animation */
.document-flow {
	position: relative;
	height: 150px;
	margin: 2rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.document-icon,
.security-layer,
.destination-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font-size: 1.25rem;
	position: relative;
	z-index: 1;
}

.document-icon {
	color: var(--bs-primary);
	animation: moveFile 3s infinite;
}

.security-layer {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(5px);
	color: var(--bs-primary);
}

.destination-icon {
	background: rgba(255, 255, 255, 0.1);
	color: var(--bs-success);
}

.document-flow::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--neon-blue), var(--bs-primary));
	opacity: 0.5;
}

@keyframes moveFile {
	0% {
		transform: translateX(0);
		opacity: 1;
	}

	40% {
		transform: translateX(calc(50% - 24px));
		opacity: 0.8;
	}

	60% {
		transform: translateX(calc(50% - 24px));
		opacity: 0.8;
	}

	100% {
		transform: translateX(calc(100% - 48px));
		opacity: 1;
	}
}

/* Security Features */
.security-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 0.5rem;
	transition: all 0.3s ease;
}

.feature-item:hover {
	transform: translateX(5px);
	background: rgba(255, 255, 255, 0.1);
}

.feature-item i {
	font-size: 1.25rem;
	color: var(--neon-blue);
}

.feature-item span {
	color: var(--bs-gray-300);
	font-size: 1rem;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(100, 210, 255, 0.4);
	}

	70% {
		transform: scale(1.1);
		box-shadow: 0 0 0 10px rgba(100, 210, 255, 0);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(100, 210, 255, 0);
	}
}

/* Features Section */
.features-section {
	background: linear-gradient(135deg, var(--bs-white) 0%, var(--bs-gray-100) 100%);
}

.feature-card {
	transition: all 0.3s ease;
	border: 1px solid var(--bs-gray-200);
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	border-color: var(--bs-primary);
}

.feature-icon {
	background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
	box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.3);
}

/* Integration Section */
.integration-section {
	background: linear-gradient(135deg, var(--bs-gray-100) 0%, var(--bs-gray-200) 100%);
	position: relative;
	overflow: hidden;
}

.integration-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/tech-pattern.png') repeat;
	opacity: 0.05;
	pointer-events: none;
}

.integration-card {
	transition: all 0.3s ease;
	border: 1px solid var(--bs-gray-200);
}

.integration-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	border-color: var(--bs-primary);
}

.integration-icon {
	background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
	box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.3);
}

/* Social Proof Section */
.social-proof-section {
	background: linear-gradient(135deg, var(--bs-white) 0%, var(--bs-gray-100) 100%);
}

.metric-card {
	transition: all 0.3s ease;
	border: 1px solid var(--bs-gray-200);
}

.metric-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	border-color: var(--bs-primary);
}

.metric-icon {
	background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
	box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.3);
}

.metric-card h3 {
	color: var(--bs-primary);
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

.metric-card p {
	color: var(--bs-gray-600);
	font-size: 1.1rem;
	margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

	.benefit-card,
	.feature-card,
	.integration-card,
	.metric-card {
		margin-bottom: 1rem;
	}

	.metric-card h3 {
		font-size: 2rem;
	}
}

.enterprise-solutions-section {
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.enterprise-solutions-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
}

.solution-card {
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.solution-icon {
	transition: all 0.3s ease;
	background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
	box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.solution-card:hover .solution-icon {
	transform: scale(1.1);
	background: linear-gradient(135deg, #0056b3 0%, var(--bs-primary) 100%);
	box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

.solution-icon i {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.solution-card:hover .solution-icon i {
	color: #ffffff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.feature-grid-card {
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-grid-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	transition: all 0.3s ease;
	background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
	box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.feature-grid-card:hover .feature-icon {
	transform: scale(1.1);
	background: linear-gradient(135deg, #0056b3 0%, var(--bs-primary) 100%);
	box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

.feature-icon i {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.feature-grid-card:hover .feature-icon i {
	color: #ffffff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {

	.solution-card,
	.feature-grid-card {
		margin-bottom: 1rem;
	}
}

/* Common Icon Sizes */
.solution-icon,
.feature-icon,
.integration-icon,
.metric-icon,
.service-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.solution-icon i,
.feature-icon i,
.integration-icon i,
.metric-icon i,
.service-icon i {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

/* Document Flow Icons */
.document-icon,
.security-layer,
.destination-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font-size: 1.25rem;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

/* Feature Item Icons */
.feature-item i {
	font-size: 1rem;
	color: var(--neon-blue);
	min-width: 24px;
	text-align: center;
}

/* Service Item Icons */
.service-item-enterprise .service-icon {
	width: 48px;
	height: 48px;
	font-size: 1.25rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

	.solution-icon,
	.feature-icon,
	.integration-icon,
	.metric-icon,
	.service-icon,
	.document-icon,
	.security-layer,
	.destination-icon,
	.service-item-enterprise .service-icon {
		width: 40px;
		height: 40px;
	}

	.solution-icon i,
	.feature-icon i,
	.integration-icon i,
	.metric-icon i,
	.service-icon i,
	.document-icon i,
	.security-layer i,
	.destination-icon i,
	.service-item-enterprise .service-icon i {
		font-size: 1.1rem;
	}

	.feature-item i {
		font-size: 0.9rem;
	}
}

/* What We Offer Section */
.what-we-offer-section {
	background: linear-gradient(135deg, #1a1a2e, #16213e);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.what-we-offer-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.1), transparent 70%);
	pointer-events: none;
}

.what-we-offer-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 1rem;
	text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
	letter-spacing: 0.5px;
}

.what-we-offer-subtitle {
	font-size: 1.2rem;
	color: #64D2FF;
	margin-bottom: 3rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0 0 10px rgba(100, 210, 255, 0.3);
}

.offer-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 217, 255, 0.2);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

.offer-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
	border-color: #64D2FF;
	box-shadow: 0 8px 30px rgba(0, 217, 255, 0.2);
}

.offer-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0A84FF, #64D2FF);
	border-radius: 16px;
	color: #fff;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.offer-card:hover .offer-icon {
	transform: scale(1.1);
	background: linear-gradient(135deg, #64D2FF, #30B0C7);
	box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

.offer-card h4 {
	font-size: 1.75rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 1.25rem;
	text-align: center;
	text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
	letter-spacing: 0.5px;
}

.offer-card p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.2rem;
	line-height: 1.6;
	margin: 0;
	text-align: center;
	font-weight: 500;
	text-shadow: 0 0 5px rgba(0, 217, 255, 0.2);
}

.offer-card ul {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
	width: 100%;
}

.offer-card ul li {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	border-bottom: 1px solid rgba(0, 217, 255, 0.1);
	font-weight: 500;
	transition: all 0.3s ease;
}

.offer-card ul li:hover {
	background: rgba(0, 217, 255, 0.05);
	transform: translateX(5px);
}

.offer-card ul li:last-child {
	border-bottom: none;
}

.offer-card ul li i {
	color: #64D2FF;
	font-size: 1.25rem;
	text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
	transition: all 0.3s ease;
}

.offer-card:hover ul li i {
	color: #30B0C7;
	text-shadow: 0 0 15px rgba(48, 176, 199, 0.5);
}

@media (max-width: 991.98px) {
	.offer-card {
		padding: 2rem;
	}

	.offer-card h4 {
		font-size: 1.5rem;
	}

	.offer-card p {
		font-size: 1.1rem;
	}

	.offer-card ul li {
		font-size: 1rem;
	}
}

@media (max-width: 767.98px) {
	.offer-card {
		padding: 1.75rem;
	}

	.offer-card h4 {
		font-size: 1.35rem;
	}

	.offer-card p {
		font-size: 1rem;
	}

	.offer-card ul li {
		font-size: 0.95rem;
	}
}

/* Hero Stats Display */
.hero-stats-display {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: var(--shadow-lg);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.stat-item-hero {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(37, 99, 235, 0.05);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.stat-item-hero:hover {
	background: rgba(37, 99, 235, 0.1);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.stat-icon-hero {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.stat-content-hero {
	flex: 1;
}

.stat-number-hero {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-600);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.stat-label-hero {
	font-size: 0.875rem;
	color: var(--neutral-600);
	font-weight: 500;
}

/* Security Flow Visualization */
.security-flow-hero {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	padding: 1.5rem;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.flow-steps {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.flow-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
	min-width: 80px;
}

.step-icon {
	width: 60px;
	height: 60px;
	background: rgba(37, 99, 235, 0.1);
	border: 2px solid rgba(37, 99, 235, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
	color: var(--primary-600);
	transition: all 0.3s ease;
}

.step-icon.active {
	background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
	border-color: var(--primary-600);
	color: white;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.step-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--neutral-700);
}

.flow-arrow-simple {
	color: var(--primary-600);
	font-size: 1.25rem;
	flex-shrink: 0;
}

/* Trust Indicators */
.trust-indicators {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	padding: 1.5rem;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-badge {
	display: flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--neutral-700);
	transition: all 0.3s ease;
}

.trust-badge:hover {
	background: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

/* Mobile Responsiveness for New Hero */
@media (max-width: 768px) {
	.hero-stats-display {
		padding: 1rem;
		margin-top: 1.5rem;
	}

	.hero-visual-modern {
		padding: 1rem;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.stat-item-hero {
		padding: 0.875rem;
	}

	.stat-icon-hero {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.stat-number-hero {
		font-size: 1.25rem;
	}

	.flow-steps {
		flex-direction: column;
		gap: 1.5rem;
	}

	.flow-arrow-simple {
		transform: rotate(90deg);
	}

	.step-icon {
		width: 50px;
		height: 50px;
		font-size: 1rem;
	}

	.trust-indicators .d-flex {
		flex-direction: column;
		gap: 0.75rem !important;
	}

	.trust-badge {
		justify-content: center;
		text-align: center;
	}

	/* Mobile content ordering */
	.hero-section-modern .row {
		margin: 0;
	}

	.hero-section-modern .col-lg-6 {
		padding: 0.5rem;
	}

	.industry-badge {
		margin-bottom: 1rem;
	}

	.social-proof {
		margin-top: 2rem;
	}
}

/* AI-Optimized FAQ Section Styling */
.faq-section {
	background: #ffffff;
	padding: 6rem 0;
}

.faq-accordion .accordion-item {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	overflow: hidden;
}

.faq-accordion .accordion-item:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.faq-accordion .accordion-button {
	background: #ffffff;
	border: none;
	padding: 1.5rem 2rem;
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--neutral-800);
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
	color: var(--primary-600);
	box-shadow: none;
}

.faq-accordion .accordion-button:focus {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
	border-color: transparent;
}

.faq-accordion .accordion-button::after {
	background-image: none;
	content: '\f107';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 1rem;
	color: var(--primary-600);
	transition: transform 0.3s ease;
}

.faq-accordion .accordion-button.collapsed::after {
	transform: rotate(-90deg);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	transform: rotate(0deg);
}

.faq-accordion .accordion-body {
	padding: 0 2rem 2rem 2rem;
	color: var(--neutral-700);
	line-height: 1.7;
	font-size: 1rem;
}

.faq-accordion .accordion-body p {
	margin-bottom: 1rem;
}

.faq-accordion .accordion-body p:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-body strong {
	color: var(--neutral-900);
	font-weight: 600;
}

/* FAQ Icon Styling */
.faq-accordion .accordion-button i {
	font-size: 1.25rem;
	flex-shrink: 0;
}

/* Mobile Responsive FAQ */
@media (max-width: 768px) {
	.faq-section {
		padding: 4rem 0;
	}

	.faq-accordion .accordion-button {
		padding: 1.25rem 1.5rem;
		font-size: 1rem;
	}

	.faq-accordion .accordion-button i {
		font-size: 1.1rem;
		margin-right: 0.75rem !important;
	}

	.faq-accordion .accordion-body {
		padding: 0 1.5rem 1.5rem 1.5rem;
		font-size: 0.95rem;
	}
}