/* VASTConnect Technology — Premium Design System v2 */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
	--vc-blue: #00008b;
	--vc-blue-mid: #1212a8;
	--vc-blue-light: #2d2db8;
	--vc-navy: #00002c;
	--vc-navy-soft: #08082e;
	--vc-yellow: #ffeb3b;
	--vc-yellow-soft: #fff176;
	--vc-accent: #00008b;
	--vc-accent-dark: #00002c;
	--vc-white: #ffffff;
	--vc-gray: #f0f4fa;
	--vc-gray-dark: #e2e8f0;
	--vc-surface: #f8faff;
	--vc-surface-blue: #eef3ff;
	--vc-text: #1e293b;
	--vc-text-muted: #64748b;
	--vc-radius: 16px;
	--vc-radius-sm: 10px;
	--vc-radius-lg: 24px;
	--vc-shadow-sm: 0 4px 20px rgba(0, 0, 44, 0.06);
	--vc-shadow: 0 12px 48px rgba(0, 0, 44, 0.1);
	--vc-shadow-lg: 0 24px 64px rgba(0, 0, 139, 0.15);
	--vc-gradient-hero: linear-gradient(135deg, rgba(0, 0, 44, 0.92) 0%, rgba(0, 0, 139, 0.78) 45%, rgba(0, 0, 139, 0.4) 100%);
	--vc-gradient-brand: linear-gradient(135deg, var(--vc-blue) 0%, var(--vc-navy) 100%);
	--vc-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
	scroll-behavior: auto;
}

body {
	font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
	color: var(--vc-text);
	overflow-x: hidden;
	background: var(--vc-white);
}

/* Wide, fluid content shared by headers, page bodies, and footers. */
@media (min-width: 992px) {
	.container {
		width: calc(100% - clamp(2rem, 4vw, 5rem));
		max-width: 1680px;
	}
}

::selection {
	background: var(--vc-yellow);
	color: var(--vc-navy);
}

/* ── Preloader ── */
.vc-preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: var(--vc-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: opacity 0.5s, visibility 0.5s;
}

.vc-preloader.loaded {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.vc-preloader-logo {
	padding: 0;
	background: none;
	border: none;
	box-shadow: none;
	animation: none;
}

.vc-preloader-logo .vc-logo-img {
	height: 54px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	display: block;
}

.vc-preloader-bar {
	width: 120px;
	height: 3px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 3px;
	margin-top: 1.5rem;
	overflow: hidden;
}

.vc-preloader-bar span {
	display: block;
	height: 100%;
	width: 40%;
	background: var(--vc-yellow);
	border-radius: 3px;
	animation: vc-loadbar 1s ease-in-out infinite;
}

@keyframes vc-loadbar {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(350%); }
}

/* ── Floating action stack (shared) ── */
:root {
	--vc-fab-size: 52px;
	--vc-fab-gap: 12px;
	--vc-fab-inset: 22px;
	--vc-fab-stack-step: calc(var(--vc-fab-size) + var(--vc-fab-gap));
	--vc-carousel-control-size: 48px;
	--vc-carousel-control-inset: 20px;
}

.vc-fab-item {
	position: fixed;
	right: var(--vc-fab-inset);
	width: var(--vc-fab-size);
	height: var(--vc-fab-size);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	cursor: pointer;
	text-decoration: none;
	border: none;
	color: #fff;
	z-index: 9991;
	transform: translateY(0) scale(1);
	transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.28s ease, background 0.25s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.vc-fab-item::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid currentColor;
	opacity: 0.4;
	animation: vc-fab-pulse-ring 2.4s ease-out infinite;
	pointer-events: none;
}

.vc-fab-item:hover,
.vc-fab-item:focus-visible {
	transform: scale(1.08) translateY(-3px);
}

.vc-fab-item:hover::after,
.vc-fab-item:focus-visible::after {
	animation: none;
	opacity: 0;
}

.vc-fab-item--slot-0 {
	bottom: var(--vc-fab-inset);
}

.vc-fab-item--slot-1 {
	bottom: calc(var(--vc-fab-inset) + var(--vc-fab-stack-step));
}

.vc-fab-item--slot-2 {
	bottom: calc(var(--vc-fab-inset) + var(--vc-fab-stack-step) * 2);
	z-index: 9992;
}

.vc-back-top {
	background: var(--vc-blue);
	box-shadow: 0 8px 24px rgba(0, 0, 139, 0.35);
	font-size: 1.1rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.vc-back-top.visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.vc-back-top:hover,
.vc-back-top:focus-visible {
	background: var(--vc-navy);
	box-shadow: 0 12px 28px rgba(0, 0, 139, 0.45);
}

.vc-back-top.vc-fab-reenter {
	animation: vc-fab-enter 0.55s cubic-bezier(0.34, 1.45, 0.64, 1) both;
}

.vc-back-top .vc-fab-fallback {
	display: none;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
}

/* ── Scroll animations ── */
.vc-animate {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.vc-animate.vc-visible {
	opacity: 1;
	transform: translateY(0);
}

.vc-animate-delay-1 { transition-delay: 0.1s; }
.vc-animate-delay-2 { transition-delay: 0.2s; }
.vc-animate-delay-3 { transition-delay: 0.3s; }
.vc-animate-delay-4 { transition-delay: 0.4s; }

/* ── Top bar ── */
.top-bar {
	background: #fff !important;
	border-bottom: 1px solid #e8ecf4;
	font-size: 0.84rem;
	padding: 0.45rem 0;
	color: var(--vc-navy);
}

/* CUT-style utility header row */
.vc-cut-topbar {
	background: #f4f5f5 !important;
	border-bottom: 1px solid #e3e7ee;
	padding: 0.5rem 0;
}

.vc-cut-topbar .social-media ul li a {
	color: #242b3a !important;
	opacity: 0.85;
}

.vc-cut-topbar .social-media ul li a:hover {
	color: var(--vc-blue) !important;
	opacity: 1;
}

.vc-cut-topbar__contact ul li,
.vc-cut-topbar__contact ul li i {
	color: #242b3a !important;
}

.vc-cut-topbar__contact ul li a {
	color: var(--vc-blue) !important;
	font-weight: 600;
}

.vc-cut-topbar__contact ul li a:hover {
	color: var(--vc-navy) !important;
}

.vc-cut-topbar .contact-details ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.15rem 0.5rem;
}

.top-bar .social-media ul li a {
	color: var(--vc-blue) !important;
	opacity: 0.85;
}

.social-media ul li a {
	transition: color 0.25s, transform 0.25s;
	opacity: 0.85;
}

.social-media ul li a:hover {
	color: var(--vc-blue-mid) !important;
	transform: translateY(-2px);
	opacity: 1;
}

.contact-details ul li,
.contact-details ul li i {
	color: var(--vc-navy) !important;
}

.contact-details ul li a {
	color: var(--vc-blue) !important;
	font-weight: 600;
}

.contact-details ul li a:hover {
	color: var(--vc-navy) !important;
}

/* ── Navigation — CUT-style navy bar (matches footer) ── */
.top-nav {
	background: rgba(255, 255, 255, 0.98) !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 0.55rem 0;
	transition: all var(--vc-transition);
	border-bottom: 1px solid rgba(0, 0, 139, 0.06);
	box-shadow: 0 4px 24px rgba(0, 0, 44, 0.06);
}

.top-nav.vc-cut-nav,
.top-nav.vc-cut-nav.fixed-menu,
.top-nav.vc-cut-nav.vc-scrolled {
	background: var(--vc-navy) !important;
	border-bottom: none;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
	padding: 0.5rem 0;
}

.vc-cut-nav-stripe {
	height: 4px;
	background: linear-gradient(90deg, var(--vc-blue), var(--vc-blue), var(--vc-yellow));
}

.top-nav.vc-cut-nav .navbar-nav .nav-link {
	color: rgba(255, 255, 255, 0.9) !important;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
}

.top-nav.vc-cut-nav .navbar-nav .nav-link:hover,
.top-nav.vc-cut-nav .navbar-nav .nav-link.active {
	color: var(--vc-yellow) !important;
}

.top-nav.vc-cut-nav .navbar-nav .nav-link.active:before,
.top-nav.vc-cut-nav .navbar-nav .nav-link:hover:before {
	border-top-color: var(--vc-yellow) !important;
	border-top-width: 3px;
}

.top-nav.vc-cut-nav .navbar-nav .dropdown-menu {
	background: rgba(0, 0, 44, 0.98);
	border: 1px solid rgba(255, 235, 59, 0.15);
}

.top-nav.vc-cut-nav .navbar-nav .dropdown-menu .dropdown-item {
	color: rgba(255, 255, 255, 0.9);
}

.top-nav.vc-cut-nav .navbar-nav .dropdown-menu .dropdown-item:hover {
	background: var(--vc-blue);
	color: var(--vc-yellow);
}

.top-nav.vc-cut-nav .navbar-toggler {
	color: var(--vc-yellow);
	border-color: rgba(255, 235, 59, 0.35);
	background: rgba(255, 255, 255, 0.08);
}

.top-nav.vc-cut-nav .vc-nav-cta {
	background: var(--vc-yellow) !important;
	color: var(--vc-navy) !important;
	box-shadow: none;
}

.top-nav.vc-cut-nav .vc-nav-cta:hover {
	background: #fff !important;
	color: var(--vc-navy) !important;
}

.top-nav.vc-cut-nav .vc-logo-img {
	height: 50px;
}

.vc-portal-brand-tag {
	display: inline-block;
	margin-left: 0.5rem;
	padding: 0.15rem 0.55rem;
	background: var(--vc-yellow);
	color: var(--vc-navy);
	font-size: 0.7rem;
	font-weight: 800;
	border-radius: 4px;
	vertical-align: middle;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.top-nav.fixed-menu:not(.vc-cut-nav),
.top-nav.vc-scrolled:not(.vc-cut-nav) {
	background: rgba(255, 255, 255, 0.99) !important;
	box-shadow: 0 8px 32px rgba(0, 0, 44, 0.1);
	border-bottom-color: rgba(0, 0, 139, 0.08);
	padding: 0.4rem 0;
}

.navbar-brand.vc-brand {
	padding: 0.15rem 0;
	margin-right: 1rem;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	line-height: 0;
	min-height: 56px;
}

.navbar-brand.vc-brand:hover {
	opacity: 0.92;
}

.vc-logo-img {
	display: block;
	height: 46px;
	width: auto;
	max-width: 190px;
	object-fit: contain;
	object-position: left center;
}

/* Keep navbar logo balanced and responsive in the header */
.top-nav .navbar-brand.vc-brand .vc-logo-img {
	height: clamp(40px, 4.2vw, 52px);
	width: auto;
	max-width: 210px;
}

/* legacy wrapper — keep harmless if still used elsewhere */
.vc-logo-frame {
	display: inline-flex;
	line-height: 0;
	background: none;
	border: none;
	padding: 0;
	box-shadow: none;
}

.navbar-brand img:not(.vc-logo-img) {
	height: 44px;
	width: auto;
	max-width: 190px;
	object-fit: contain;
}

.navbar-expand-lg.top-nav .navbar-nav .nav-link {
	color: var(--vc-navy) !important;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.6rem 0.95rem !important;
	position: relative;
}

.navbar-expand-lg.top-nav .navbar-nav .nav-link:hover,
.navbar-expand-lg.top-nav .navbar-nav .nav-link.active {
	color: var(--vc-blue) !important;
}

.navbar-expand-lg.top-nav .navbar-nav .nav-link.active:before,
.navbar-expand-lg.top-nav .navbar-nav .nav-link:hover:before {
	border-top-color: var(--vc-yellow) !important;
	border-top-width: 3px;
}

.navbar-expand-lg.top-nav .navbar-nav .dropdown-menu {
	background: #fff;
	border: 1px solid rgba(0, 0, 139, 0.08);
	border-radius: var(--vc-radius-sm);
	box-shadow: var(--vc-shadow-lg);
	padding: 0.5rem 0;
	margin-top: 0.5rem;
}

.navbar-expand-lg.top-nav .navbar-nav .dropdown-menu .dropdown-item {
	color: var(--vc-navy);
	padding: 0.6rem 1.35rem;
	font-size: 0.88rem;
	transition: all 0.2s;
}

.navbar-expand-lg.top-nav .navbar-nav .dropdown-menu .dropdown-item:hover {
	background: var(--vc-surface-blue);
	color: var(--vc-blue);
	padding-left: 1.6rem;
}

.vc-legal-page {
	max-width: 820px;
	margin: 0 auto;
	line-height: 1.7;
	color: #243447;
}
.vc-legal-page h3 {
	margin-top: 1.75rem;
	margin-bottom: 0.65rem;
	font-size: 1.15rem;
	color: var(--vc-navy, #0a2a43);
}
.vc-legal-page ul {
	padding-left: 1.2rem;
}
.vc-footer-legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem 0.85rem;
	margin-bottom: 0.65rem;
	font-size: 0.9rem;
}
.vc-footer-legal a {
	color: rgba(255, 255, 255, 0.85);
}
.vc-footer-legal a:hover {
	color: var(--vc-yellow, #ffeb3b);
}

/* Anchor landing under sticky nav */
#web-design, #software, #software-products, #consulting, #library-systems,
#data, #cloud, #email, #seo, #erp, #networks, #security, #hardware,
#attachments, #car-sale, #school-mgmt, #portfolio, #platforms, #services {
	scroll-margin-top: 90px;
}

/* Desktop: hover opens dropdown; parent link still navigates on click */
@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .nav-item.dropdown:hover > .dropdown-menu,
	.navbar .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
		display: block;
		margin-top: 0;
	}

	.navbar-expand-lg .navbar-nav .nav-item.dropdown:hover > .dropdown-toggle,
	.navbar .navbar-nav .nav-item.dropdown:hover > .dropdown-toggle {
		color: var(--vc-yellow);
	}
}

.top-nav .navbar-toggler {
	color: var(--vc-blue);
	border: 1px solid rgba(0, 0, 139, 0.15);
	border-radius: 8px;
	padding: 0.4rem 0.65rem;
	background: var(--vc-surface-blue);
}

.vc-nav-cta {
	background: linear-gradient(135deg, var(--vc-blue), var(--vc-blue-mid)) !important;
	color: #fff !important;
	border-radius: 50px !important;
	padding: 0.5rem 1.4rem !important;
	margin-left: 0.75rem;
	font-weight: 700 !important;
	font-size: 0.88rem !important;
	box-shadow: 0 4px 16px rgba(0, 0, 139, 0.2);
	transition: var(--vc-transition) !important;
}

.vc-nav-cta:hover {
	background: var(--vc-yellow) !important;
	color: var(--vc-navy) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 235, 59, 0.3);
}

.vc-nav-cta:before,
.vc-nav-cta:after,
.navbar-expand-lg.top-nav .navbar-nav .nav-link.vc-nav-cta:before,
.navbar-expand-lg.top-nav .navbar-nav .nav-link.vc-nav-cta:after {
	display: none !important;
	content: none !important;
}

/* Keep CTA label readable — .nav-link.active is yellow on the navy bar */
.top-nav.vc-cut-nav .navbar-nav .nav-link.vc-nav-cta,
.top-nav.vc-cut-nav .navbar-nav .nav-link.vc-nav-cta:hover,
.top-nav.vc-cut-nav .navbar-nav .nav-link.vc-nav-cta.active {
	color: var(--vc-navy) !important;
	background: var(--vc-yellow) !important;
}

.top-nav.vc-cut-nav .navbar-nav .nav-link.vc-nav-cta:hover {
	background: #fff !important;
	color: var(--vc-navy) !important;
}

/* CUT navy nav — must follow generic .top-nav rules */
.navbar-expand-lg.top-nav.vc-cut-nav .navbar-nav .nav-link {
	color: rgba(255, 255, 255, 0.9) !important;
	text-transform: uppercase;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
}

.navbar-expand-lg.top-nav.vc-cut-nav .navbar-nav .nav-link:hover,
.navbar-expand-lg.top-nav.vc-cut-nav .navbar-nav .nav-link.active {
	color: var(--vc-yellow) !important;
}

.navbar-expand-lg.top-nav.vc-cut-nav .navbar-nav .dropdown-menu {
	background: rgba(0, 0, 44, 0.98) !important;
	border: 1px solid rgba(255, 235, 59, 0.15) !important;
}

.navbar-expand-lg.top-nav.vc-cut-nav .navbar-nav .dropdown-menu .dropdown-item {
	color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-expand-lg.top-nav.vc-cut-nav .navbar-nav .dropdown-menu .dropdown-item:hover {
	background: var(--vc-blue) !important;
	color: var(--vc-yellow) !important;
}

.top-nav.vc-cut-nav .navbar-toggler {
	color: var(--vc-yellow) !important;
	border-color: rgba(255, 235, 59, 0.35) !important;
	background: rgba(255, 255, 255, 0.08) !important;
}

.top-nav.vc-cut-nav .vc-nav-cta {
	background: var(--vc-yellow) !important;
	color: var(--vc-navy) !important;
	box-shadow: none !important;
}

.top-nav.vc-cut-nav .vc-nav-cta:hover {
	background: #fff !important;
	color: var(--vc-navy) !important;
}

/* ══════════════════════════════════════════
   Homepage — CUT-inspired eye catcher
   ══════════════════════════════════════════ */

.vc-notice-bar {
	display: none;
}

/* ── Interactive notice cards ── */
.vc-notice-cards {
	position: relative;
	z-index: 6;
	margin-top: 0;
	padding: 2rem 0 1rem;
	background: #fff;
}

.vc-notice-cards__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.vc-notice-cards__head h3 {
	font-size: 1rem;
	font-weight: 800;
	color: var(--vc-navy);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.vc-notice-cards__head h3 i {
	color: var(--vc-blue);
}

.vc-notice-cards__all {
	background: #fff;
	border: 1px solid rgba(0, 0, 139, 0.12);
	color: var(--vc-blue);
	font-size: 0.82rem;
	font-weight: 700;
	padding: 0.45rem 1rem;
	border-radius: 50px;
	cursor: pointer;
	transition: var(--vc-transition);
	box-shadow: var(--vc-shadow-sm);
}

.vc-notice-cards__all:hover,
.vc-notice-cards__all.is-open {
	background: var(--vc-blue);
	color: #fff;
	border-color: var(--vc-blue);
}

.vc-notice-cards__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.vc-notice-card {
	position: relative;
	background: #fff;
	border: 1px solid rgba(0, 0, 139, 0.08);
	border-radius: var(--vc-radius);
	padding: 1.25rem 1.15rem 1.15rem;
	box-shadow: 0 8px 32px rgba(0, 0, 44, 0.08);
	cursor: pointer;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	overflow: hidden;
	text-decoration: none !important;
	display: block;
	color: inherit;
}

.vc-notice-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--vc-blue), var(--vc-yellow));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}

.vc-notice-card:hover,
.vc-notice-card.is-active {
	transform: translateY(-8px);
	box-shadow: 0 20px 48px rgba(0, 0, 139, 0.14);
	border-color: rgba(0, 0, 139, 0.18);
}

.vc-notice-card:hover::before,
.vc-notice-card.is-active::before {
	transform: scaleX(1);
}

.vc-notice-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	margin-bottom: 0.85rem;
}

.vc-notice-card__icon--blue {
	background: var(--vc-surface-blue);
	color: var(--vc-blue);
}

.vc-notice-card__icon--yellow {
	background: rgba(255, 235, 59, 0.25);
	color: var(--vc-navy);
}

.vc-notice-card__icon--navy {
	background: rgba(0, 0, 44, 0.08);
	color: var(--vc-navy);
}

.vc-notice-card__tag {
	display: inline-block;
	background: var(--vc-yellow);
	color: var(--vc-navy);
	font-size: 0.65rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.2rem 0.55rem;
	border-radius: 4px;
	margin-bottom: 0.5rem;
}

.vc-notice-card__tag--soft {
	background: var(--vc-surface-blue);
	color: var(--vc-blue);
}

.vc-notice-card h4 {
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--vc-navy);
	margin-bottom: 0.35rem;
	line-height: 1.35;
}

.vc-notice-card p {
	font-size: 0.82rem;
	color: var(--vc-text-muted);
	line-height: 1.55;
	margin-bottom: 0.75rem;
}

.vc-notice-card__link {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--vc-blue);
	transition: gap 0.25s;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.vc-notice-card:hover .vc-notice-card__link {
	gap: 0.55rem;
}

@media (max-width: 991px) {
	.vc-notice-cards__row {
		grid-template-columns: repeat(2, 1fr);
	}

	.vc-notice-cards {
		padding: 1.75rem 0 1rem;
	}
}

@media (max-width: 575px) {
	.vc-notice-cards__row {
		grid-template-columns: 1fr;
	}

	.vc-notice-cards {
		margin-top: 0;
		padding: 1.5rem 0 1rem;
		background: var(--vc-surface);
	}
}

.vc-notify-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 44, 0.55);
	z-index: 99980;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s, visibility 0.35s;
}

.vc-notify-backdrop.is-visible {
	opacity: 1;
	visibility: visible;
}

.vc-notify-panel {
	position: fixed;
	top: 0;
	right: 0;
	width: min(420px, 92vw);
	height: 100vh;
	background: #fff;
	z-index: 99990;
	box-shadow: -12px 0 48px rgba(0, 0, 44, 0.2);
	transform: translateX(105%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}

.vc-notify-panel.is-open {
	transform: translateX(0);
}

.vc-notify-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	background: var(--vc-navy);
	color: #fff;
}

.vc-notify-panel__head h3 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
}

.vc-notify-panel__close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.1rem;
	cursor: pointer;
}

.vc-notify-panel__close:hover { color: var(--vc-yellow); }

.vc-notify-list {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-y: auto;
	flex: 1;
}

.vc-notify-item {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--vc-gray-dark);
	transition: background 0.2s;
}

.vc-notify-item:hover { background: var(--vc-gray); }

.vc-notify-item--new {
	border-left: 4px solid var(--vc-blue);
}

.vc-notify-date {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--vc-blue);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.35rem;
}

.vc-notify-item strong {
	display: block;
	color: var(--vc-navy);
	font-size: 0.95rem;
	margin-bottom: 0.35rem;
}

.vc-notify-item p {
	font-size: 0.84rem;
	color: var(--vc-text-muted);
	margin-bottom: 0.5rem;
	line-height: 1.55;
}

.vc-notify-item a {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--vc-blue);
}

.vc-notify-item a:hover { color: var(--vc-blue); }

.vc-quick-grid {
	margin-top: 0;
	position: relative;
	z-index: 6;
	padding: 2.5rem 0 3rem;
	background: var(--vc-surface);
}

.vc-quick-card {
	display: block;
	position: relative;
	min-height: 168px;
	border-radius: var(--vc-radius);
	overflow: hidden;
	box-shadow: var(--vc-shadow-lg);
	text-decoration: none !important;
	color: #fff !important;
	transition: transform var(--vc-transition), box-shadow var(--vc-transition);
}

.vc-quick-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 56px rgba(0, 0, 44, 0.25);
}

.vc-quick-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.65s ease;
}

.vc-quick-card:hover .vc-quick-card__bg { transform: scale(1.1); }

.vc-quick-card__fade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 44, 0.05) 0%, rgba(0, 0, 139, 0.45) 55%, rgba(0, 0, 44, 0.72) 100%);
}

.vc-quick-card--accent .vc-quick-card__fade {
	background: linear-gradient(180deg, rgba(0, 0, 139, 0.2) 0%, rgba(0, 0, 139, 0.6) 50%, rgba(0, 0, 44, 0.9) 100%);
}

.vc-quick-card__body {
	position: relative;
	z-index: 2;
	padding: 1.35rem;
	height: 100%;
	min-height: 168px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.vc-quick-card__body i {
	font-size: 1.5rem;
	color: var(--vc-yellow);
	margin-bottom: 0.5rem;
}

.vc-quick-card__body h4 {
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 0.2rem;
}

.vc-quick-card__body span {
	font-size: 0.8rem;
	opacity: 0.88;
	letter-spacing: 0.01em;
}

.vc-section-soft {
	padding: 4rem 0;
	background: linear-gradient(180deg, #f4f7fc 0%, #eef2f9 100%);
}

.vc-news-panel {
	background: #fff;
	border-radius: var(--vc-radius-lg);
	box-shadow: var(--vc-shadow-sm);
	border: 1px solid rgba(0, 0, 139, 0.08);
	overflow: hidden;
	height: 100%;
}

.vc-news-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(135deg, var(--vc-navy), var(--vc-blue));
	color: #fff;
}

.vc-news-panel__head h3 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
}

.vc-news-panel__head a {
	color: var(--vc-yellow);
	font-size: 0.82rem;
	font-weight: 600;
}

.vc-news-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vc-news-list li {
	display: flex;
	gap: 1rem;
	padding: 1.15rem 1.5rem;
	border-bottom: 1px solid var(--vc-gray-dark);
	transition: background 0.2s;
}

.vc-news-list li:last-child { border-bottom: none; }
.vc-news-list li:hover { background: rgba(0, 0, 139, 0.03); }

.vc-news-list__date {
	flex-shrink: 0;
	width: 52px;
	text-align: center;
	background: rgba(0, 0, 139, 0.1);
	border-radius: 8px;
	padding: 0.4rem 0.25rem;
	color: var(--vc-blue);
	line-height: 1.1;
}

.vc-news-list__date b {
	display: block;
	font-size: 1.25rem;
	font-weight: 800;
}

.vc-news-list__date small {
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
}

.vc-news-list a {
	font-weight: 700;
	color: var(--vc-navy);
	font-size: 0.95rem;
	display: block;
	margin-bottom: 0.3rem;
	line-height: 1.45;
}

.vc-news-list a:hover { color: var(--vc-blue); }

.vc-news-list p {
	margin: 0;
	font-size: 0.86rem;
	color: var(--vc-text-muted);
	line-height: 1.65;
}

.vc-event-card {
	position: relative;
	border-radius: var(--vc-radius-lg);
	overflow: hidden;
	min-height: 100%;
	box-shadow: var(--vc-shadow-lg);
}

.vc-event-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 8s ease;
	filter: brightness(1.12) saturate(1.15);
}

.vc-event-card:hover .vc-event-card__bg { transform: scale(1.08); }

.vc-event-card__fade {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(0, 0, 44, 0.38) 0%, rgba(0, 0, 139, 0.55) 50%, rgba(0, 0, 44, 0.72) 100%);
}

.vc-event-card__body {
	position: relative;
	z-index: 2;
	padding: 2rem;
	color: #fff;
}

.vc-event-card__tag {
	display: inline-block;
	background: var(--vc-blue);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	padding: 0.3rem 0.65rem;
	border-radius: 4px;
	margin-bottom: 0.75rem;
}

.vc-event-card__body h3 {
	font-size: 1.35rem;
	font-weight: 800;
	margin-bottom: 0.65rem;
}

.vc-event-card__body > p {
	font-size: 0.88rem;
	opacity: 0.9;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.vc-countdown {
	display: flex;
	gap: 0.65rem;
}

.vc-countdown > div {
	flex: 1;
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 235, 59, 0.25);
	border-radius: 10px;
	padding: 0.55rem 0.35rem;
	backdrop-filter: blur(4px);
}

.vc-countdown span {
	display: block;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--vc-yellow);
	line-height: 1.1;
}

.vc-countdown small {
	font-size: 0.62rem;
	text-transform: uppercase;
	opacity: 0.8;
	letter-spacing: 0.04em;
}

.vc-gallery-marquee {
	overflow: hidden;
	background: var(--vc-navy);
	padding: 1.25rem 0;
	border-top: 3px solid var(--vc-blue);
	border-bottom: 3px solid var(--vc-yellow);
}

.vc-gallery-marquee__track {
	display: flex;
	width: max-content;
	animation: vc-marquee 45s linear infinite;
}

.vc-gallery-marquee__set {
	display: flex;
	gap: 1rem;
	padding-right: 1rem;
}

.vc-gallery-marquee:hover .vc-gallery-marquee__track {
	animation-play-state: paused;
}

.vc-gallery-slide {
	width: 280px;
	height: 160px;
	flex-shrink: 0;
	border-radius: 12px;
	background-size: cover;
	background-position: center;
	opacity: 0.95;
	filter: brightness(1.1) saturate(1.15);
	transition: opacity 0.3s, filter 0.3s, transform 0.3s;
	border: 2px solid rgba(255, 255, 255, 0.15);
}

.vc-gallery-slide:hover {
	opacity: 1;
	filter: saturate(1);
	transform: scale(1.04);
}

.vc-gallery-slide--logo {
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #fff;
	background-position: center;
	opacity: 1;
	filter: none;
}

@keyframes vc-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* Photo service cards (faded bg images) */
.vc-photo-card {
	display: block;
	position: relative;
	min-height: 300px;
	border-radius: var(--vc-radius);
	overflow: hidden;
	box-shadow: var(--vc-shadow);
	text-decoration: none !important;
	color: #fff !important;
	transition: transform var(--vc-transition), box-shadow var(--vc-transition);
}

.vc-photo-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--vc-shadow-lg);
}

.vc-photo-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
	filter: brightness(1.08) saturate(1.12);
}

.vc-photo-card:hover .vc-photo-card__bg { transform: scale(1.1); }

.vc-photo-card__fade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 44, 0.12) 0%, rgba(0, 0, 139, 0.48) 45%, rgba(0, 0, 44, 0.78) 100%);
	transition: opacity 0.35s;
}

.vc-photo-card:hover .vc-photo-card__fade { opacity: 0.95; }

.vc-photo-card__body {
	position: relative;
	z-index: 2;
	padding: 1.75rem;
	height: 100%;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.vc-photo-card .vc-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.vc-photo-card .vc-icon {
	width: 48px;
	height: 48px;
	background: var(--vc-blue);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	margin-bottom: 0.85rem;
	transition: transform 0.35s, background 0.35s;
}

.vc-photo-card:hover .vc-icon {
	background: var(--vc-yellow);
	color: var(--vc-navy);
	transform: rotate(-6deg) scale(1.08);
}

.vc-photo-card h4 {
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 0.45rem;
}

.vc-photo-card p {
	font-size: 0.88rem;
	opacity: 0.92;
	line-height: 1.65;
	margin-bottom: 0.75rem;
}

.vc-photo-card .vc-link {
	color: var(--vc-yellow);
	font-weight: 700;
	font-size: 0.85rem;
}

.vc-photo-card.featured {
	border: 2px solid rgba(255, 235, 59, 0.45);
}

/* ── Hero ── */
/* Stable carousels — fixed height + no scroll anchoring when slides change */
.vc-hero-wrap,
.vc-sr-hero-carousel,
.vc-car-hero-carousel,
.vc-att-hero,
.vc-att-hero__carousel {
	overflow-anchor: none;
}

.carousel.carousel-fade .carousel-inner {
	position: relative;
	overflow: hidden;
}

.carousel.carousel-fade .carousel-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block !important;
	opacity: 0;
	z-index: 0;
	transition: opacity 0.6s ease-in-out;
	pointer-events: none;
}

.carousel.carousel-fade .carousel-item.active,
.carousel.carousel-fade .carousel-item-next.carousel-item-left,
.carousel.carousel-fade .carousel-item-prev.carousel-item-right {
	opacity: 1;
	z-index: 1;
}

.carousel.carousel-fade .active.carousel-item-left,
.carousel.carousel-fade .active.carousel-item-right {
	opacity: 0;
	z-index: 0;
}

.vc-hero-wrap .carousel-inner {
	height: clamp(480px, 72vh, 720px);
}

.vc-hero-wrap {
	position: relative;
	overflow: hidden;
}

.vc-hero-wrap .carousel-item {
	height: 100%;
	min-height: 0;
	background: none;
	position: absolute;
	overflow: hidden;
}

.vc-hero-wrap .carousel-item:not(.active) .carousel-caption {
	visibility: hidden;
}

.vc-hero-bg {
	position: absolute;
	inset: -8%;
	background-size: cover;
	background-position: center;
	will-change: transform;
	filter: brightness(1.14) saturate(1.18) contrast(1.02);
}

.carousel-item.active .vc-hero-bg {
	animation: vc-kenburns 16s ease-out forwards;
}

@keyframes vc-kenburns {
	from { transform: scale(1); }
	to { transform: scale(1.14); }
}

.vc-hero-wrap .carousel-item:before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		115deg,
		rgba(255, 255, 255, 0.12) 0%,
		rgba(0, 0, 139, 0.28) 38%,
		rgba(0, 0, 44, 0.38) 100%
	);
}

.vc-hero-wrap .carousel-item:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(to top, rgba(248, 250, 255, 0.85), transparent);
	pointer-events: none;
	z-index: 1;
}

.vc-hero-wrap .carousel-caption {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%) translate(var(--vc-hero-x, 0px), var(--vc-hero-y, 0px));
	transition: transform 0.18s ease-out;
	text-align: left;
	left: 0;
	right: 0;
	width: calc(100% - clamp(2rem, 4vw, 5rem));
	padding: 0 1rem 5rem;
	max-width: 1680px;
	margin: 0 auto;
	z-index: 2;
}

.vc-hero-wrap .carousel-caption .vc-hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 235, 59, 0.55);
	color: var(--vc-yellow);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.45rem 1.1rem;
	border-radius: 50px;
	margin-bottom: 1.25rem;
	backdrop-filter: blur(8px);
}

.vc-hero-headline {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	margin-bottom: 1.15rem;
}

.vc-hero-line {
	display: block;
	font-size: clamp(2rem, 5.2vw, 3.6rem);
	font-weight: 800;
	line-height: 1.05;
	color: #fff;
	letter-spacing: -0.03em;
	text-shadow: 0 4px 24px rgba(0, 0, 44, 0.25);
}

.vc-hero-line--accent {
	color: var(--vc-yellow);
}

.vc-hero-sub {
	font-size: clamp(1rem, 1.85vw, 1.15rem);
	color: rgba(255, 255, 255, 0.94);
	line-height: 1.75;
	margin-bottom: 1.35rem;
	max-width: 520px;
	font-weight: 500;
}

.vc-hero-sub strong {
	color: #fff;
	font-weight: 700;
}

.vc-hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	padding: 0;
	margin: 0 0 1.75rem;
}

.vc-hero-chips li {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	padding: 0.35rem 0.85rem;
	border-radius: 50px;
	backdrop-filter: blur(6px);
	transition: var(--vc-transition);
}

.vc-hero-chips li:hover {
	background: var(--vc-yellow);
	color: var(--vc-navy);
	border-color: var(--vc-yellow);
	transform: translateY(-2px);
}

.vc-hero-wrap .carousel-caption h2 {
	font-size: clamp(1.85rem, 4.8vw, 3.35rem);
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
	margin-bottom: 1.25rem;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.vc-hero-wrap .carousel-caption h2 span {
	color: var(--vc-yellow);
	text-shadow: 0 2px 12px rgba(0, 0, 44, 0.35);
}

.vc-hero-wrap .carousel-caption p {
	font-size: clamp(1rem, 1.9vw, 1.18rem);
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.8;
	margin-bottom: 2rem;
	max-width: 540px;
	font-weight: 400;
	text-wrap: pretty;
}

.vc-hero-btns .btn {
	border-radius: 50px;
	padding: 0.85rem 2rem;
	font-weight: 700;
	font-size: 0.92rem;
	margin-right: 0.75rem;
	margin-bottom: 0.5rem;
	transition: var(--vc-transition);
}

.vc-btn-primary {
	background: linear-gradient(135deg, var(--vc-blue), var(--vc-navy)) !important;
	border: none !important;
	color: #fff !important;
	box-shadow: 0 8px 24px rgba(0, 0, 139, 0.4);
}

.vc-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 139, 0.5);
	background: var(--vc-yellow) !important;
	color: var(--vc-navy) !important;
}

.vc-btn-outline {
	background: rgba(255, 255, 255, 0.08) !important;
	border: 2px solid rgba(255, 255, 255, 0.6) !important;
	color: #fff !important;
	backdrop-filter: blur(4px);
}

.vc-btn-outline:hover {
	background: #fff !important;
	color: var(--vc-navy) !important;
	border-color: #fff !important;
	transform: translateY(-3px);
}

.vc-hero-wrap .carousel-indicators li {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	margin: 0 5px;
	transition: var(--vc-transition);
	z-index: 3;
}

.vc-hero-wrap .carousel-indicators {
	z-index: 3;
}

.vc-hero-wrap .carousel-indicators li.active {
	background: var(--vc-yellow);
	width: 32px;
	border-radius: 5px;
}

.vc-hero-wrap .carousel-control-prev,
.vc-hero-wrap .carousel-control-next {
	width: var(--vc-carousel-control-size);
	height: var(--vc-carousel-control-size);
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	opacity: 0.85;
	transition: var(--vc-transition);
	z-index: 3;
}

.vc-hero-wrap .carousel-control-prev { left: var(--vc-carousel-control-inset); }
.vc-hero-wrap .carousel-control-next { right: var(--vc-carousel-control-inset); }

.vc-hero-wrap .carousel-control-prev:hover,
.vc-hero-wrap .carousel-control-next:hover {
	background: var(--vc-blue);
	opacity: 1;
}

/* ── CUT-style hero slides ── */
.vc-cut-slide {
	position: relative;
}

.vc-cut-slide:before {
	display: none;
}

.vc-cut-banner-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 44, 0.35) 0%, rgba(0, 0, 139, 0.42) 100%);
}

.vc-cut-banner-caption {
	top: 50% !important;
	bottom: auto !important;
	left: 0 !important;
	right: 0 !important;
	transform: translateY(-50%) !important;
	text-align: center !important;
	padding: 0 calc(var(--vc-carousel-control-inset) + var(--vc-carousel-control-size) + 0.75rem) 4rem !important;
	max-width: 780px;
	margin: 0 auto;
	z-index: 2;
}

.vc-cut-banner-tag {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--vc-yellow);
	margin-bottom: 1rem;
}

.vc-cut-banner-title {
	font-size: clamp(1.75rem, 4.5vw, 2.85rem);
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
	margin-bottom: 0.65rem;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.vc-cut-banner-title span {
	position: relative;
	display: inline-block;
}

.vc-cut-banner-title span:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.08em;
	height: 5px;
	background: var(--vc-yellow);
	z-index: -1;
}

.vc-cut-banner-text,
.vc-hero-wrap.vc-hero-classic .vc-cut-slide .carousel-caption .vc-cut-banner-text,
.slider-main.vc-hero-wrap .carousel-item.vc-cut-slide .carousel-caption p.vc-cut-banner-text,
.vc-hero-wrap .carousel-item.vc-cut-slide .carousel-caption .vc-cut-banner-text {
	font-size: clamp(0.82rem, 1.35vw, 0.98rem) !important;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.55;
	max-width: 520px;
	margin: 0 auto 1.15rem;
	letter-spacing: 0.01em;
}

.vc-cut-banner-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

@media (max-width: 767px) {
	.vc-cut-banner-btns {
		margin-top: 1rem;
	}
}

.vc-cut-slide .vc-hero-bg {
	inset: 0;
}

.vc-cut-slide:after {
	display: none;
}

.vc-cut-slide.active .vc-hero-bg,
.carousel-item.active.vc-cut-slide .vc-hero-bg {
	animation: vc-kenburns 18s ease-out forwards;
	transform: none;
}

@media (max-width: 767px) {
	.vc-cut-banner-btns .btn {
		width: 100%;
		margin: 0;
	}
}

/* ── Hero side rails + services ticker ── */
.vc-hero-with-rails {
	position: relative;
}

.vc-hero-rails-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	position: relative;
	z-index: 4;
}

.vc-hero-rails-center {
	position: relative;
	min-width: 0;
}

.vc-hero-rail {
	display: none;
}

.vc-hero-ticker {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 3.25rem;
	z-index: 6;
	display: flex;
	align-items: stretch;
	gap: 0;
	background: rgba(0, 0, 44, 0.72);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	overflow: hidden;
}

.vc-hero-ticker__label {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 1rem;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--vc-yellow);
	background: rgba(0, 0, 139, 0.55);
	white-space: nowrap;
}

.vc-hero-ticker__viewport {
	flex: 1;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.vc-hero-ticker__track {
	display: flex;
	align-items: center;
	gap: 2rem;
	width: max-content;
	padding: 0.55rem 0;
	animation: vc-hero-ticker-scroll 38s linear infinite;
}

.vc-hero-ticker__item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.25s ease, transform 0.25s ease;
}

.vc-hero-ticker__item i {
	color: var(--vc-yellow);
	opacity: 0.95;
}

.vc-hero-ticker__item:hover {
	color: #fff;
	transform: scale(1.04);
	text-decoration: none;
}

.vc-hero-ticker:hover .vc-hero-ticker__track {
	animation-play-state: paused;
}

@keyframes vc-hero-ticker-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.vc-hero-side-card {
	position: relative;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	min-height: 118px;
	text-decoration: none;
	color: #fff;
	box-shadow: 0 12px 32px rgba(0, 0, 44, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.14);
	transform: translateY(12px);
	opacity: 0;
	animation: vc-hero-card-in 0.7s ease forwards;
	animation-delay: calc(0.12s + (var(--vc-card-i, 0) * 0.12s));
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.vc-hero-side-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.55s ease, filter 0.35s ease;
}

.vc-hero-side-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(0, 0, 44, 0.55) 0%, rgba(0, 0, 44, 0.82) 100%);
	transition: opacity 0.35s ease, background 0.35s ease;
}

.vc-hero-side-card__shine {
	position: absolute;
	inset: -40% auto auto -30%;
	width: 55%;
	height: 140%;
	background: linear-gradient(115deg, rgba(255,255,255,0.22), transparent 55%);
	transform: rotate(12deg) translateX(-120%);
	transition: transform 0.65s ease;
	pointer-events: none;
}

.vc-hero-side-card__body {
	position: relative;
	z-index: 2;
	padding: 0.85rem 0.95rem 0.9rem;
}

.vc-hero-side-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	font-size: 0.95rem;
	margin-bottom: 0.45rem;
	background: rgba(255, 255, 255, 0.14);
	transition: transform 0.35s ease, background 0.35s ease;
}

.vc-hero-side-card__title {
	font-size: 0.92rem;
	font-weight: 800;
	margin: 0 0 0.2rem;
	line-height: 1.25;
}

.vc-hero-side-card__text {
	font-size: 0.72rem;
	line-height: 1.35;
	margin: 0 0 0.45rem;
	opacity: 0.88;
}

.vc-hero-side-card__cta {
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	opacity: 0.85;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.vc-hero-side-card--blue .vc-hero-side-card__shade { background: linear-gradient(145deg, rgba(21,101,192,0.72), rgba(0,0,44,0.88)); }
.vc-hero-side-card--amber .vc-hero-side-card__shade { background: linear-gradient(145deg, rgba(239,108,0,0.72), rgba(0,0,44,0.88)); }
.vc-hero-side-card--green .vc-hero-side-card__shade { background: linear-gradient(145deg, rgba(46,125,50,0.72), rgba(0,0,44,0.88)); }
.vc-hero-side-card--teal .vc-hero-side-card__shade { background: linear-gradient(145deg, rgba(0,121,107,0.72), rgba(0,0,44,0.88)); }
.vc-hero-side-card--red .vc-hero-side-card__shade { background: linear-gradient(145deg, rgba(198,40,40,0.72), rgba(0,0,44,0.88)); }
.vc-hero-side-card--violet .vc-hero-side-card__shade { background: linear-gradient(145deg, rgba(94,53,177,0.72), rgba(0,0,44,0.88)); }

.vc-hero-side-card:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow: 0 20px 44px rgba(0, 0, 139, 0.45);
	border-color: rgba(255, 235, 59, 0.45);
	text-decoration: none;
	color: #fff;
}

.vc-hero-side-card:hover .vc-hero-side-card__bg {
	transform: scale(1.12);
	filter: brightness(1.08) saturate(1.15);
}

.vc-hero-side-card:hover .vc-hero-side-card__shade {
	opacity: 0.82;
}

.vc-hero-side-card:hover .vc-hero-side-card__shine {
	transform: rotate(12deg) translateX(220%);
}

.vc-hero-side-card:hover .vc-hero-side-card__icon {
	transform: scale(1.12) rotate(-4deg);
	background: rgba(255, 255, 255, 0.22);
}

.vc-hero-side-card:hover .vc-hero-side-card__cta {
	opacity: 1;
	transform: translateX(4px);
}

@keyframes vc-hero-card-in {
	from { opacity: 0; transform: translateY(18px) scale(0.96); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes vc-hero-card-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

@media (min-width: 1200px) {
	.vc-hero-rails-layout {
		grid-template-columns: 210px minmax(0, 1fr) 210px;
		gap: 1rem;
		padding: 0 0.75rem;
		align-items: center;
	}

	.vc-hero-rail {
		display: flex;
		flex-direction: column;
		gap: 0.85rem;
		padding: 5.5rem 0 6.5rem;
	}

	.vc-hero-rail .vc-hero-side-card {
		animation: vc-hero-card-in 0.7s ease forwards, vc-hero-card-float 5s ease-in-out infinite;
		animation-delay: calc(0.12s + (var(--vc-card-i, 0) * 0.12s)), calc(1s + (var(--vc-card-i, 0) * 0.45s));
	}

	.vc-hero-with-rails .carousel-caption {
		max-width: 920px;
	}

	.vc-hero-with-rails .carousel-control-prev { left: calc(var(--vc-carousel-control-inset) + 0.5rem); }
	.vc-hero-with-rails .carousel-control-next { right: calc(var(--vc-carousel-control-inset) + 0.5rem); }
}

@media (min-width: 1400px) {
	.vc-hero-rails-layout {
		grid-template-columns: 240px minmax(0, 1fr) 240px;
		gap: 1.25rem;
		padding: 0 1rem;
	}

	.vc-hero-side-card {
		min-height: 128px;
	}
}

@media (max-width: 1199px) {
	.vc-hero-ticker {
		bottom: 2.75rem;
	}

	.vc-hero-with-rails .vc-hero-scroll {
		bottom: 4.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vc-hero-ticker__track,
	.vc-hero-side-card,
	.vc-hero-rail .vc-hero-side-card {
		animation: none !important;
		opacity: 1;
		transform: none;
	}
}

/* ── Stats ── */
.vc-stats {
	background: var(--vc-navy);
	padding: 0;
	margin-top: 0;
	position: relative;
	z-index: 10;
}

.vc-stats-inner {
	background: linear-gradient(135deg, var(--vc-blue) 0%, var(--vc-blue-mid) 100%);
	border-radius: var(--vc-radius-lg);
	box-shadow: var(--vc-shadow-lg);
	padding: 2.5rem 2rem;
	border: 1px solid rgba(255, 235, 59, 0.15);
}

.vc-stat-item {
	text-align: center;
	color: #fff;
	padding: 0.75rem;
	position: relative;
}

.vc-stat-item:not(:last-child):after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: rgba(255, 255, 255, 0.15);
}

.vc-stat-item .vc-stat-num {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--vc-yellow);
	line-height: 1;
	letter-spacing: -0.02em;
}

.vc-stat-item .vc-stat-label {
	font-size: 0.85rem;
	opacity: 0.88;
	margin-top: 0.5rem;
	font-weight: 500;
}

/* ── Sections ── */
.vc-section {
	padding: 5.5rem 0;
	position: relative;
}

.vc-section-alt {
	background: var(--vc-gray);
}

.vc-section-dark {
	background: var(--vc-gradient-brand);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.vc-section-dark:before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 235, 59, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.vc-section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--vc-blue);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.vc-section-label:before {
	content: '';
	width: 24px;
	height: 2px;
	background: var(--vc-blue);
}

.vc-section-dark .vc-section-label {
	color: var(--vc-yellow);
}

.vc-section-dark .vc-section-label:before {
	background: var(--vc-yellow);
}

.vc-section-title {
	font-size: clamp(1.85rem, 3.6vw, 2.55rem);
	font-weight: 800;
	color: var(--vc-navy);
	margin-bottom: 1rem;
	line-height: 1.22;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.vc-section-dark .vc-section-title {
	color: #fff;
}

.vc-section-sub {
	font-size: 1.08rem;
	color: var(--vc-text-muted);
	max-width: 660px;
	margin: 0 auto 3rem;
	line-height: 1.85;
	text-wrap: pretty;
}

.vc-section-dark .vc-section-sub {
	color: rgba(255, 255, 255, 0.82);
}

/* ── About image frame ── */
.vc-image-frame {
	position: relative;
	border-radius: var(--vc-radius-lg);
	overflow: hidden;
	box-shadow: var(--vc-shadow-lg);
}

.vc-image-frame img {
	width: 100%;
	display: block;
}

.vc-image-frame:before {
	content: '';
	position: absolute;
	inset: 0;
	border: 3px solid rgba(255, 235, 59, 0.3);
	border-radius: var(--vc-radius-lg);
	pointer-events: none;
	z-index: 2;
}

.vc-float-card {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: rgba(0, 0, 44, 0.92);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 235, 59, 0.25);
	border-radius: var(--vc-radius);
	padding: 1rem 1.25rem;
	color: #fff;
	z-index: 3;
	max-width: 220px;
}

.vc-float-card strong {
	color: var(--vc-yellow);
	font-size: 1.5rem;
	display: block;
}

.vc-float-card span {
	font-size: 0.82rem;
	opacity: 0.9;
}

/* ── Service cards ── */
.vc-service-card {
	background: #fff;
	border-radius: var(--vc-radius);
	padding: 2rem 1.75rem;
	height: 100%;
	border: 1px solid var(--vc-gray-dark);
	box-shadow: var(--vc-shadow-sm);
	transition: var(--vc-transition);
	position: relative;
	overflow: hidden;
}

.vc-service-card:after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 139, 0.03), transparent);
	opacity: 0;
	transition: opacity 0.35s;
	pointer-events: none;
}

.vc-service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--vc-shadow-lg);
	border-color: rgba(0, 0, 139, 0.15);
}

.vc-service-card:hover:after {
	opacity: 1;
}

.vc-service-card.featured {
	border: 2px solid var(--vc-yellow);
	background: linear-gradient(160deg, #fff 0%, #fffde7 100%);
	box-shadow: 0 16px 48px rgba(0, 0, 139, 0.12);
}

.vc-service-card .vc-icon {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	background: var(--vc-gradient-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.35rem;
	box-shadow: 0 8px 20px rgba(0, 0, 139, 0.25);
	transition: transform 0.35s;
}

.vc-service-card:hover .vc-icon {
	transform: scale(1.08) rotate(-3deg);
}

.vc-service-card .vc-icon i {
	font-size: 1.45rem;
	color: var(--vc-yellow);
}

.vc-service-card.featured .vc-icon {
	background: linear-gradient(135deg, var(--vc-blue), var(--vc-navy));
}

.vc-service-card h4 {
	font-size: 1.12rem;
	font-weight: 700;
	color: var(--vc-navy);
	margin-bottom: 0.65rem;
}

.vc-service-card p {
	font-size: 0.9rem;
	color: var(--vc-text-muted);
	line-height: 1.7;
	margin-bottom: 1.15rem;
}

.vc-service-card .vc-link {
	color: var(--vc-blue);
	font-weight: 700;
	font-size: 0.86rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: gap 0.25s, color 0.25s;
}

.vc-service-card .vc-link:hover {
	color: var(--vc-blue);
	gap: 0.65rem;
}

.vc-service-card .vc-badge {
	position: absolute;
	top: 1.15rem;
	right: 1.15rem;
	background: linear-gradient(135deg, var(--vc-blue), var(--vc-navy));
	color: #fff;
	font-size: 0.65rem;
	font-weight: 800;
	padding: 0.3rem 0.7rem;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* ── Portfolio / Work ── */
.vc-work-card {
	position: relative;
	border-radius: var(--vc-radius);
	overflow: hidden;
	box-shadow: var(--vc-shadow);
	height: 280px;
}

.vc-work-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.vc-work-card:hover img {
	transform: scale(1.08);
}

.vc-work-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 44, 0.95) 0%, rgba(0, 0, 139, 0.4) 50%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.75rem;
	color: #fff;
	opacity: 0.95;
	transition: var(--vc-transition);
}

.vc-work-card:hover .vc-work-overlay {
	background: linear-gradient(to top, rgba(0, 0, 44, 0.98) 0%, rgba(0, 0, 139, 0.7) 100%);
}

.vc-work-overlay span {
	font-size: 0.72rem;
	color: var(--vc-yellow);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.vc-work-overlay h4 {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0.35rem 0 0;
}

/* ── Testimonials ── */
.vc-testimonial {
	background: #fff;
	border-radius: var(--vc-radius);
	padding: 2rem;
	height: 100%;
	border: 1px solid var(--vc-gray-dark);
	box-shadow: var(--vc-shadow-sm);
	position: relative;
	transition: var(--vc-transition);
}

.vc-testimonial:hover {
	box-shadow: var(--vc-shadow);
	transform: translateY(-4px);
}

.vc-testimonial:before {
	content: '\201C';
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	font-size: 4rem;
	line-height: 1;
	color: var(--vc-blue);
	opacity: 0.12;
	font-family: Georgia, serif;
}

.vc-testimonial .stars {
	color: var(--vc-yellow);
	font-size: 0.9rem;
	margin-bottom: 1rem;
	text-shadow: 0 0 1px var(--vc-blue);
}

.vc-testimonial p {
	font-size: 0.92rem;
	color: var(--vc-text-muted);
	line-height: 1.75;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.vc-testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.vc-testimonial-author .avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--vc-gradient-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vc-yellow);
	font-weight: 800;
	font-size: 1rem;
}

.vc-testimonial-author strong {
	display: block;
	font-size: 0.92rem;
	color: var(--vc-navy);
}

.vc-testimonial-author span {
	font-size: 0.78rem;
	color: var(--vc-text-muted);
}

/* ── Why choose us ── */
.vc-why-item {
	display: flex;
	gap: 1.15rem;
	margin-bottom: 1.85rem;
	padding: 1.25rem;
	border-radius: var(--vc-radius-sm);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: var(--vc-transition);
}

.vc-why-item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 235, 59, 0.2);
	transform: translateX(6px);
}

.vc-why-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--vc-blue), var(--vc-navy));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(0, 0, 139, 0.3);
}

.vc-why-icon i {
	color: #fff;
	font-size: 1.15rem;
}

.vc-why-item h5 {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 0.35rem;
}

.vc-why-item p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
	margin: 0;
	line-height: 1.65;
}

/* ── Process ── */
.vc-process-row {
	position: relative;
}

.vc-process-row:before {
	content: '';
	position: absolute;
	top: 26px;
	left: 12%;
	right: 12%;
	height: 2px;
	background: linear-gradient(90deg, var(--vc-blue), var(--vc-blue));
	opacity: 0.2;
}

.vc-step {
	text-align: center;
	padding: 1.5rem 1rem;
	position: relative;
	z-index: 1;
}

.vc-step-num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--vc-gradient-brand);
	color: var(--vc-yellow);
	font-weight: 800;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.15rem;
	border: 3px solid var(--vc-yellow);
	box-shadow: var(--vc-shadow);
}

.vc-step h5 {
	font-weight: 700;
	color: var(--vc-navy);
	margin-bottom: 0.5rem;
}

.vc-step p {
	font-size: 0.86rem;
	color: var(--vc-text-muted);
	line-height: 1.6;
}

/* ── Tech pills ── */
.vc-tech-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: center;
}

.vc-tech-pill {
	background: #fff;
	border: 1px solid var(--vc-gray-dark);
	border-radius: 50px;
	padding: 0.5rem 1.15rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--vc-navy);
	transition: var(--vc-transition);
}

.vc-tech-pill:hover {
	background: var(--vc-blue);
	color: var(--vc-yellow);
	border-color: var(--vc-blue);
	transform: translateY(-2px);
}

.vc-tech-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 139, 0.08);
	border-radius: var(--vc-radius);
	padding: 1.5rem 1.35rem 1.35rem;
	height: 100%;
	box-shadow: var(--vc-shadow-sm);
	transition: box-shadow 0.3s, border-color 0.3s;
}

.vc-tech-card:hover {
	box-shadow: var(--vc-shadow);
	border-color: rgba(0, 0, 139, 0.14);
}

.vc-tech-card__head {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 1rem;
	padding-bottom: 0.85rem;
	border-bottom: 2px solid var(--vc-surface-blue);
}

.vc-tech-card__head i {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--vc-surface-blue);
	color: var(--vc-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

.vc-tech-card__head h4 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--vc-navy);
}

.vc-tech-card .vc-tech-pills {
	justify-content: flex-start;
}

/* ── Attachment banner ── */
.vc-attachments-banner {
	background: var(--vc-gradient-brand);
	border-radius: var(--vc-radius-lg);
	padding: 3.5rem 2.5rem;
	color: #fff;
	box-shadow: var(--vc-shadow-lg);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 235, 59, 0.15);
}

.vc-attachments-banner:before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(255, 235, 59, 0.08) 0%, transparent 70%);
}

.vc-attachments-banner h3 {
	color: var(--vc-yellow);
	font-weight: 800;
	font-size: 1.65rem;
	margin-bottom: 1rem;
}

.vc-attachments-banner p {
	max-width: 680px;
	margin: 0 auto 1.75rem;
	line-height: 1.75;
	opacity: 0.92;
	font-size: 1.02rem;
}

.vc-attachments-banner .btn-vc-portal {
	background: var(--vc-blue);
	border: 2px solid var(--vc-blue);
	color: #fff;
	font-weight: 700;
	padding: 0.75rem 2rem;
	border-radius: 50px;
	display: inline-block;
	margin: 0.35rem;
	transition: var(--vc-transition);
	text-decoration: none;
	font-size: 0.92rem;
}

.vc-attachments-banner .btn-vc-portal:hover {
	background: transparent;
	color: var(--vc-yellow);
	border-color: var(--vc-yellow);
	transform: translateY(-3px);
	text-decoration: none;
}

/* ── CTA ── */
.vc-cta-band {
	background: linear-gradient(135deg, var(--vc-blue) 0%, var(--vc-navy) 50%, #c44a12 100%);
	padding: 4rem 0;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.vc-cta-band:before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vc-cta-band h3 {
	font-weight: 800;
	font-size: clamp(1.4rem, 3vw, 1.85rem);
	margin-bottom: 0.65rem;
	position: relative;
}

.vc-cta-band p {
	opacity: 0.95;
	margin-bottom: 0;
	position: relative;
	font-size: 1.02rem;
}

.vc-cta-band .btn {
	background: #fff !important;
	color: var(--vc-navy) !important;
	border: none !important;
	border-radius: 50px !important;
	font-weight: 800 !important;
	padding: 0.85rem 2.25rem !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	position: relative;
	transition: var(--vc-transition) !important;
}

.vc-cta-band .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
	background: var(--vc-yellow) !important;
}

/* ── Buttons ── */
a.btn-primary,
button.btn-primary,
a.btn-secondary,
button.btn-secondary {
	background: var(--vc-gradient-brand) !important;
	border: 2px solid transparent !important;
	color: #fff !important;
	border-radius: 50px !important;
	font-weight: 700 !important;
	padding: 0.65rem 1.75rem !important;
	transition: var(--vc-transition) !important;
	box-shadow: 0 6px 20px rgba(0, 0, 139, 0.25);
}

a.btn-primary:hover,
button.btn-primary:hover,
a.btn-secondary:hover,
button.btn-secondary:hover {
	background: linear-gradient(135deg, var(--vc-blue), var(--vc-navy)) !important;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 139, 0.35);
	color: #fff !important;
}

/* ── Page headers ── */
.full-title {
	background: var(--vc-gradient-brand);
	padding: 4rem 0 3rem;
	position: relative;
	overflow: hidden;
}

.full-title:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--vc-yellow), var(--vc-blue), var(--vc-yellow));
}

.full-title h1 {
	font-weight: 800;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	letter-spacing: -0.02em;
}

.full-title h1,
.full-title .breadcrumb-item,
.full-title .breadcrumb-item a {
	color: var(--vc-yellow) !important;
}

.full-title .breadcrumb-item.active {
	opacity: 0.7;
}

/* ── Footer ── */
.footer {
	background: var(--vc-navy);
	padding-top: 4rem;
	position: relative;
}

.footer:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--vc-blue), var(--vc-blue), var(--vc-yellow));
}

.footer .headin5_amrc {
	font-weight: 800;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 1.5rem;
	color: var(--vc-yellow) !important;
}

.footer p, .footer a {
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.7;
}

.footer .footer_ul_amrc li a {
	font-size: 0.88rem;
	transition: all 0.25s;
}

.footer .footer_ul_amrc li a:hover {
	color: var(--vc-yellow) !important;
	padding-left: 6px;
}

.footer .footer_ul_amrc li a i {
	color: var(--vc-blue);
	margin-right: 4px;
}

.vc-footer-contact li {
	list-style: none;
	margin-bottom: 0.75rem;
	font-size: 0.88rem;
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
}

.vc-footer-contact li i {
	color: var(--vc-yellow);
	margin-top: 3px;
	flex-shrink: 0;
}

.footer .copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 1.75rem 0;
	margin-top: 2.5rem;
	font-size: 0.85rem;
	opacity: 0.7;
}

.footer .form-control {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	border-radius: 50px 0 0 50px;
}

.footer .form-control::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.footer .input-group-append .btn {
	border-radius: 0 50px 50px 0 !important;
}

/* ── FAQ ── */
.faq-main .accordion-single {
	border: none !important;
	margin-bottom: 0.75rem;
	border-radius: var(--vc-radius-sm) !important;
	overflow: hidden;
	box-shadow: var(--vc-shadow-sm);
}

.faq-main .accordion-single .card-header {
	background: #fff;
	border: none;
	padding: 0;
}

.faq-main .btn-link {
	color: var(--vc-navy);
	font-weight: 700;
	font-size: 0.95rem;
	padding: 1.15rem 1.5rem;
	width: 100%;
}

.faq-main .btn-link:hover {
	color: var(--vc-blue);
}

.faq-main .card-body {
	padding: 0 1.5rem 1.25rem;
	color: var(--vc-text-muted);
	line-height: 1.75;
	font-size: 0.92rem;
}

/* ── Service detail pages ── */
.vc-svc-hero {
	position: relative;
	overflow: hidden;
	background: var(--vc-navy);
	padding: clamp(2.75rem, 6vw, 5rem) 0;
	color: #fff;
}

.vc-svc-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.28;
}

.vc-svc-hero:before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--vc-gradient-hero);
}

.vc-svc-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
}

.vc-svc-hero__crumbs {
	background: none;
	padding: 0;
	margin-bottom: 1.25rem;
	font-size: 0.85rem;
}

.vc-svc-hero__crumbs .breadcrumb-item,
.vc-svc-hero__crumbs .breadcrumb-item.active {
	color: rgba(255, 255, 255, 0.75);
}

.vc-svc-hero__crumbs a {
	color: var(--vc-yellow);
}

.vc-svc-hero__crumbs .breadcrumb-item + .breadcrumb-item:before {
	color: rgba(255, 255, 255, 0.45);
}

.vc-svc-hero__icon {
	width: 62px;
	height: 62px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--vc-yellow);
	color: var(--vc-navy);
	font-size: 1.6rem;
	margin-bottom: 1.25rem;
}

.vc-svc-hero h1 {
	font-size: clamp(1.85rem, 4vw, 2.9rem);
	font-weight: 800;
	color: #fff;
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.vc-svc-hero p {
	font-size: clamp(1rem, 2vw, 1.18rem);
	color: rgba(255, 255, 255, 0.88);
	max-width: 680px;
	line-height: 1.75;
	margin-bottom: 1.75rem;
}

.vc-svc-hero__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.vc-svc-h2 {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 800;
	color: var(--vc-navy);
	margin-bottom: 1.25rem;
}

.vc-svc-h3 {
	font-size: clamp(1.2rem, 2.4vw, 1.5rem);
	font-weight: 800;
	color: var(--vc-navy);
	margin: 2.5rem 0 1.25rem;
}

.vc-svc-lead {
	font-size: 1.03rem;
	line-height: 1.85;
	color: var(--vc-text);
	margin-bottom: 1.15rem;
}

.vc-svc-steps {
	display: grid;
	gap: 1rem;
}

.vc-svc-step {
	display: flex;
	gap: 1rem;
	padding: 1.15rem 1.25rem;
	background: var(--vc-surface);
	border: 1px solid var(--vc-gray-dark);
	border-radius: var(--vc-radius);
	transition: var(--vc-transition);
}

.vc-svc-step:hover {
	border-color: var(--vc-blue);
	box-shadow: var(--vc-shadow-sm);
	transform: translateY(-2px);
}

.vc-svc-step__num {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--vc-blue);
	color: #fff;
	font-weight: 800;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vc-svc-step strong {
	display: block;
	color: var(--vc-navy);
	font-size: 1rem;
	margin-bottom: 0.3rem;
}

.vc-svc-step p {
	margin-bottom: 0;
	font-size: 0.93rem;
	color: var(--vc-text-muted);
	line-height: 1.7;
}

.vc-svc-list,
.vc-svc-check {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.vc-svc-list li,
.vc-svc-check li {
	display: flex;
	gap: 0.7rem;
	align-items: flex-start;
	padding: 0.55rem 0;
	font-size: 0.95rem;
	line-height: 1.65;
}

.vc-svc-list li i {
	color: var(--vc-blue);
	margin-top: 0.25rem;
}

.vc-svc-side {
	background: var(--vc-gradient-brand);
	border-radius: var(--vc-radius-lg);
	padding: 1.75rem;
	color: #fff;
	box-shadow: var(--vc-shadow);
	margin-bottom: 1.5rem;
}

.vc-svc-side h3 {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--vc-yellow);
	margin-bottom: 1rem;
}

.vc-svc-check li {
	color: rgba(255, 255, 255, 0.92);
}

.vc-svc-check li i {
	color: var(--vc-yellow);
	margin-top: 0.3rem;
}

.vc-svc-side__note {
	margin-top: 0.9rem;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.6;
}

.vc-svc-side--contact {
	background: var(--vc-surface-blue);
	color: var(--vc-text);
	box-shadow: var(--vc-shadow-sm);
	border: 1px solid var(--vc-gray-dark);
	margin-bottom: 0;
}

.vc-svc-side--contact h3 {
	color: var(--vc-navy);
}

.vc-svc-side--contact .vc-footer-contact li,
.vc-svc-side--contact .vc-footer-contact li a {
	color: var(--vc-text);
}

.vc-svc-side--contact .vc-footer-contact li a:hover {
	color: var(--vc-blue);
}

.vc-svc-pricing {
	background: #f6f8fc;
}

.vc-svc-package-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}

.vc-svc-package {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 1.6rem 1.35rem;
	background: #fff;
	border: 1px solid #e0e6ef;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 44, 0.07);
}

.vc-svc-package--featured {
	border: 2px solid var(--vc-yellow);
	transform: translateY(-8px);
	box-shadow: 0 16px 38px rgba(0, 0, 139, 0.14);
}

.vc-svc-package__badge {
	position: absolute;
	top: -12px;
	right: 18px;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	background: var(--vc-yellow);
	color: var(--vc-navy);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.vc-svc-package h3 {
	margin-bottom: 0.5rem;
	color: var(--vc-navy);
	font-size: 1.15rem;
	font-weight: 800;
	text-transform: uppercase;
}

.vc-svc-package__price {
	margin-bottom: 0.45rem;
	color: var(--vc-blue);
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1;
}

.vc-svc-package__price sup {
	top: -0.65em;
	font-size: 0.45em;
}

.vc-svc-package__price small {
	color: #6c7585;
	font-size: 0.75rem;
	font-weight: 600;
}

.vc-svc-package__pages {
	margin-bottom: 1rem;
	color: #4d5968;
	font-size: 0.88rem;
	font-weight: 700;
}

.vc-svc-package__features {
	margin: 1.2rem 0 0;
	padding: 0;
	list-style: none;
}

.vc-svc-package__features li {
	display: flex;
	gap: 0.55rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid #edf0f5;
	color: #3d4856;
	font-size: 0.88rem;
}

.vc-svc-package__features li:last-child {
	border-bottom: 0;
}

.vc-svc-package__features i {
	margin-top: 0.18rem;
	color: #20a35a;
}

.vc-svc-pricing__note {
	max-width: 900px;
	margin: 1.5rem auto 0;
	color: #5f6977;
	font-size: 0.88rem;
	text-align: center;
}

@media (max-width: 991px) {
	.vc-svc-package-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vc-svc-package--featured {
		transform: none;
	}
}

@media (max-width: 575px) {
	.vc-svc-package-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 991.98px) {
	.vc-svc-side {
		margin-top: 0.5rem;
	}
}

@media (max-width: 575.98px) {
	.vc-svc-hero__btns .btn {
		width: 100%;
	}

	.vc-svc-side {
		padding: 1.25rem;
	}
}

/* ── Contact ── */
.contact-main.vc-section {
	padding: clamp(2.5rem, 5vw, 4.5rem) 0;
	background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.vc-contact-container {
	width: calc(100% - 3rem);
	max-width: 1680px;
}

.vc-contact-layout {
	margin-left: -0.75rem;
	margin-right: -0.75rem;
	align-items: stretch;
}

.vc-contact-layout > [class*="col-"] {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.vc-contact-form-card {
	height: 100%;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	background: #fff;
	border: 1px solid var(--vc-gray-dark);
	border-radius: var(--vc-radius-lg);
	box-shadow: var(--vc-shadow-sm);
}

.vc-contact-form-card h3 {
	color: var(--vc-navy);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 800;
}

.vc-contact-form-card label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--vc-navy);
	font-size: 0.88rem;
	font-weight: 700;
}

.vc-contact-form-card label span {
	color: #c62828;
}

.contact-main .form-control,
.contact-main select.form-control {
	border-radius: var(--vc-radius-sm);
	border: 1px solid var(--vc-gray-dark);
	padding: 0.75rem 1.15rem;
	font-size: 0.92rem;
	line-height: 1.5;
	height: auto;
	min-height: 3rem;
	transition: var(--vc-transition);
}

.contact-main textarea.form-control {
	min-height: 10rem;
	resize: vertical;
}

.vc-contact-submit {
	min-width: 190px;
}

.contact-main select.form-control {
	padding-right: 2.75rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2300008b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 0.85rem;
}

.contact-main .form-control:focus,
.contact-main select.form-control:focus {
	border-color: var(--vc-blue);
	box-shadow: 0 0 0 4px rgba(0, 0, 139, 0.1);
}

.contact-right {
	background: var(--vc-gradient-brand);
	border-radius: var(--vc-radius-lg);
	padding: 2.25rem;
	color: #fff;
	box-shadow: var(--vc-shadow-lg);
}

.contact-right h3,
.contact-right h5 {
	color: var(--vc-yellow);
	font-weight: 700;
}

.contact-right .vc-footer-contact li,
.contact-right .vc-footer-contact li a {
	color: rgba(255, 255, 255, 0.9);
}

.contact-right hr {
	border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 991.98px) {
	.vc-contact-container {
		width: calc(100% - 2rem);
	}

	.contact-right {
		margin-top: 0;
	}
}

@media (max-width: 575.98px) {
	.contact-main.vc-section {
		padding: 2rem 0;
	}

	.vc-contact-container {
		width: 100%;
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.vc-contact-form-card,
	.contact-right {
		padding: 1.25rem;
		border-radius: 16px;
	}

	.vc-contact-submit {
		width: 100%;
	}
}

/* ── Legacy overrides ── */
.services-bar { background: var(--vc-navy); }
.touch-line { background: var(--vc-gradient-brand); padding: 3rem 0; }
.touch-line p { color: #fff; font-size: 1.05rem; }

.wrapper-main .mouse-pointer { display: none; }

/* ── Responsive ── */
@media (max-width: 991px) {
	.vc-notice-btn-text { display: none; }
	.vc-notice-item { white-space: normal; }
	.vc-quick-grid { margin-top: -40px; }
	.vc-hero-wrap .carousel-inner { height: clamp(420px, 62vh, 520px); }
	.vc-stats { margin-top: 0; padding: 2rem 0; }
	.vc-stats-inner { border-radius: var(--vc-radius); }
	.vc-stat-item:not(:last-child):after { display: none; }
	.vc-stat-item { margin-bottom: 1rem; }
	.vc-process-row:before { display: none; }
	.vc-section { padding: 4rem 0; }
	.vc-hero-wrap .carousel-caption { text-align: center; }
	.vc-hero-wrap .carousel-caption p { margin-left: auto; margin-right: auto; }
	.vc-hero-btns { display: flex; flex-wrap: wrap; justify-content: center; }
	.vc-cut-topbar .social-media,
	.vc-cut-topbar .contact-details {
		text-align: center;
	}
	.vc-cut-topbar .contact-details ul {
		justify-content: center;
	}
	.top-nav.vc-cut-nav .navbar-collapse {
		max-height: calc(100vh - 110px);
		overflow-y: auto;
		padding-bottom: 0.75rem;
	}
	.navbar-expand-lg.top-nav .navbar-nav .nav-link {
		padding: 0.6rem 0.85rem;
	}
	.footer .row > [class*="col-"] {
		text-align: center;
	}
	.vc-footer-contact li {
		justify-content: center;
	}
}

@media (max-width: 767px) {
	:root {
		--vc-carousel-control-size: 40px;
		--vc-carousel-control-inset: 12px;
	}
	.vc-hero-wrap .carousel-inner { height: clamp(380px, 58vh, 480px); }
	.vc-hero-wrap .carousel-caption { padding: 0 1.25rem; text-align: center; }
	.vc-cut-banner-caption {
		padding: 0 1rem 5.5rem !important;
	}
	.vc-cut-banner-title {
		font-size: clamp(1.45rem, 6vw, 2rem);
	}
	.vc-hero-wrap .carousel-control-prev,
	.vc-hero-wrap .carousel-control-next {
		top: auto;
		bottom: 3.75rem;
		transform: none;
	}
	.vc-hero-sub { margin-left: auto; margin-right: auto; }
	.vc-hero-chips { justify-content: center; }
	.vc-hero-btns { display: flex; flex-wrap: wrap; justify-content: center; }
	.vc-float-card { position: relative; bottom: auto; left: auto; margin-top: 1rem; max-width: 100%; }
	.vc-work-card { height: 220px; }
	.vc-nav-cta { margin-left: 0 !important; margin-top: 0.5rem; display: inline-block; }
	.vc-cut-topbar .contact-details {
		margin-top: 0.35rem;
	}
	.vc-cut-topbar .contact-details ul li {
		font-size: 0.78rem;
	}
	.container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

@media (max-width: 575px) {
	.vc-hero-btns .btn { width: 100%; margin-right: 0; }
	.vc-attachments-banner { padding: 2.5rem 1.5rem; }
	.vc-attachments-banner .btn-vc-portal { display: block; margin: 0.5rem 0; }
	.top-bar .row > [class*="col-"] {
		text-align: center;
	}
	.vc-cut-topbar .social-media ul,
	.vc-cut-topbar .contact-details ul {
		justify-content: center;
		flex-wrap: wrap;
		gap: 0.25rem 0.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vc-animate { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
	.vc-flip-inner { transition: none; }
}

/* ══════════════════════════════════════════
   CUT-inspired: Job cards, flip cards, shapes
   ══════════════════════════════════════════ */

/* ── Job / vacancy cards (background image) ── */
.vc-job-card {
	position: relative;
	border-radius: var(--vc-radius);
	overflow: hidden;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-shadow: var(--vc-shadow);
	transition: transform var(--vc-transition), box-shadow var(--vc-transition);
	text-decoration: none !important;
	color: #fff !important;
}

.vc-job-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: var(--vc-shadow-lg);
}

.vc-job-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
}

.vc-job-card:hover .vc-job-card__bg {
	transform: scale(1.1);
}

.vc-job-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 44, 0.95) 0%, rgba(0, 0, 139, 0.55) 45%, rgba(0, 0, 44, 0.25) 100%);
	transition: background 0.4s ease;
}

.vc-job-card:hover .vc-job-card__overlay {
	background: linear-gradient(to top, rgba(0, 0, 44, 0.98) 0%, rgba(0, 0, 139, 0.72) 50%, rgba(0, 0, 139, 0.2) 100%);
}

.vc-job-card__body {
	position: relative;
	z-index: 2;
	padding: 1.75rem;
}

.vc-job-card__tag {
	display: inline-block;
	background: var(--vc-blue);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.35rem 0.85rem;
	border-radius: 4px;
	margin-bottom: 0.75rem;
}

.vc-job-card__tag.tag-yellow {
	background: var(--vc-yellow);
	color: var(--vc-navy);
}

.vc-job-card h4 {
	font-size: 1.2rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	line-height: 1.3;
	color: #fff;
}

.vc-job-card__meta {
	font-size: 0.82rem;
	opacity: 0.85;
	margin-bottom: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.vc-job-card__meta span i {
	color: var(--vc-yellow);
	margin-right: 0.35rem;
}

.vc-btn-job {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--vc-yellow);
	color: var(--vc-navy) !important;
	font-weight: 800;
	font-size: 0.82rem;
	padding: 0.55rem 1.25rem;
	border-radius: 4px;
	text-decoration: none !important;
	transition: var(--vc-transition);
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.vc-job-card:hover .vc-btn-job {
	background: #fff;
	transform: translateX(6px);
}

/* ── 3D Flip portfolio cards ── */
.vc-flip-scene {
	perspective: 1200px;
	height: 340px;
	position: relative;
}

.vc-flip-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.75s cubic-bezier(0.4, 0.2, 0.2, 1);
	transform-style: preserve-3d;
}

.vc-flip-scene:hover .vc-flip-inner,
.vc-flip-scene.is-flipped .vc-flip-inner {
	transform: rotateY(180deg);
}

.vc-flip-front,
.vc-flip-back {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	border-radius: var(--vc-radius-lg);
	overflow: hidden;
	box-shadow: var(--vc-shadow);
}

.vc-flip-front {
	background-size: cover;
	background-position: center;
	filter: brightness(1.1) saturate(1.12);
}

.vc-flip-front:before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 44, 0.72) 0%, transparent 55%);
}

.vc-flip-front__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.75rem;
	color: #fff;
	z-index: 2;
}

.vc-flip-front__badge {
	background: var(--vc-yellow);
	color: var(--vc-navy);
	font-size: 0.68rem;
	font-weight: 800;
	padding: 0.3rem 0.75rem;
	border-radius: 50px;
	display: inline-block;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.vc-flip-front h4 {
	font-weight: 800;
	font-size: 1.25rem;
	margin: 0;
}

.vc-flip-back {
	background: var(--vc-gradient-brand);
	transform: rotateY(180deg);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem;
	color: #fff;
	border: 2px solid rgba(255, 235, 59, 0.25);
}

.vc-flip-back h4 {
	color: var(--vc-yellow);
	font-weight: 800;
	margin-bottom: 0.75rem;
}

.vc-flip-back p {
	font-size: 0.88rem;
	opacity: 0.9;
	line-height: 1.65;
	margin-bottom: 1.25rem;
}

.vc-flip-back .vc-btn-flip {
	background: var(--vc-blue);
	color: #fff !important;
	padding: 0.65rem 1.5rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none !important;
	transition: var(--vc-transition);
}

.vc-flip-back .vc-btn-flip:hover {
	background: var(--vc-yellow);
	color: var(--vc-navy) !important;
	transform: scale(1.05);
}

.vc-flip-hint {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 3;
	background: rgba(0, 0, 44, 0.7);
	color: var(--vc-yellow);
	font-size: 0.7rem;
	padding: 0.35rem 0.65rem;
	border-radius: 50px;
	backdrop-filter: blur(4px);
}

/* ── Background picture cards ( varied shapes ) ── */
.vc-bg-card {
	position: relative;
	min-height: 260px;
	border-radius: var(--vc-radius);
	overflow: hidden;
	box-shadow: var(--vc-shadow);
	transition: var(--vc-transition);
}

.vc-bg-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--vc-shadow-lg);
}

.vc-bg-card.shape-cut {
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
	border-radius: 0;
}

.vc-bg-card.shape-round {
	border-radius: 50% 50% var(--vc-radius) var(--vc-radius);
	min-height: 280px;
}

.vc-bg-card.shape-slant {
	clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
}

.vc-bg-card__img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.55s ease;
}

.vc-bg-card:hover .vc-bg-card__img {
	transform: scale(1.08);
}

.vc-bg-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 139, 0.75) 0%, rgba(0, 0, 44, 0.85) 100%);
	opacity: 0.88;
	transition: opacity 0.35s;
}

.vc-bg-card:hover .vc-bg-card__shade {
	opacity: 0.92;
}

.vc-bg-card__content {
	position: relative;
	z-index: 2;
	padding: 2rem;
	height: 100%;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #fff;
}

.vc-bg-card.shape-round .vc-bg-card__content {
	min-height: 280px;
}

.vc-bg-card__icon {
	width: 52px;
	height: 52px;
	background: var(--vc-blue);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	font-size: 1.35rem;
	color: #fff;
	transition: transform 0.35s, background 0.35s;
}

.vc-bg-card:hover .vc-bg-card__icon {
	transform: rotate(-8deg) scale(1.1);
	background: var(--vc-yellow);
	color: var(--vc-navy);
}

.vc-bg-card h4 {
	font-weight: 800;
	font-size: 1.15rem;
	margin-bottom: 0.4rem;
}

.vc-bg-card p {
	font-size: 0.85rem;
	opacity: 0.88;
	margin: 0;
	line-height: 1.55;
}

/* ── Button shape variants ── */
.vc-btn-pill {
	border-radius: 50px !important;
	padding: 0.7rem 1.85rem !important;
	font-weight: 700 !important;
}

.vc-btn-cut {
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
	border-radius: 0 !important;
	padding: 0.7rem 1.75rem !important;
	font-weight: 800 !important;
}

.vc-btn-arrow {
	position: relative;
	padding-right: 2.5rem !important;
}

.vc-btn-arrow:after {
	content: '\f061';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	right: 1.25rem;
	transition: right 0.25s;
}

.vc-btn-arrow:hover:after {
	right: 1rem;
}

/* ── Portfolio featured strip (BioSignal) ── */
.vc-featured-project {
	background: var(--vc-navy);
	border-radius: var(--vc-radius-lg);
	overflow: hidden;
	box-shadow: var(--vc-shadow-lg);
	display: flex;
	flex-wrap: wrap;
}

.vc-featured-project__visual {
	flex: 1 1 320px;
	min-height: 300px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.vc-featured-project__visual:before {
	content: 'Live Site';
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	background: #22c55e;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 800;
	padding: 0.35rem 0.75rem;
	border-radius: 50px;
	text-transform: uppercase;
	z-index: 2;
}

.vc-featured-project__visual--client {
	background: linear-gradient(145deg, #f0f7ff 0%, #ffffff 50%, #eef6f4 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 2rem;
}

.vc-featured-project__visual--client:before {
	content: 'Client Project';
	background: var(--vc-blue);
}

.vc-client-logo {
	max-width: 92%;
	max-height: 200px;
	width: auto;
	height: auto;
	object-fit: contain;
	position: relative;
	z-index: 1;
}

.vc-client-logo-sm {
	max-height: 52px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	background: #fff;
	padding: 0.45rem 0.85rem;
	border-radius: 8px;
	margin-bottom: 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── Laptop / desktop mockup for portfolio screenshots ── */
.vc-device-mockup {
	width: min(100%, 560px);
	margin: 0 auto;
	filter: drop-shadow(0 24px 48px rgba(0, 0, 44, 0.28));
	transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.vc-device-mockup:hover {
	transform: translateY(-6px) scale(1.01);
}

.vc-device-mockup__bezel {
	background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
	border-radius: 14px 14px 0 0;
	padding: 12px 12px 8px;
	position: relative;
}

.vc-device-mockup__bezel::before {
	content: '';
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #374151;
	box-shadow: -16px 0 0 #374151, 16px 0 0 #374151;
}

.vc-device-mockup__screen {
	border-radius: 6px;
	overflow: hidden;
	background: #000;
	aspect-ratio: 16 / 10;
}

.vc-device-mockup__screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.vc-device-mockup__chin {
	height: 12px;
	background: linear-gradient(180deg, #374151, #1f2937);
	border-radius: 0 0 4px 4px;
}

.vc-device-mockup__stand {
	width: 34%;
	height: 10px;
	margin: 0 auto;
	background: linear-gradient(180deg, #6b7280, #4b5563);
	border-radius: 0 0 8px 8px;
}

.vc-device-mockup__base {
	width: 46%;
	height: 6px;
	margin: 0 auto;
	background: #9ca3af;
	border-radius: 0 0 10px 10px;
}

.vc-portfolio-diagram {
	max-width: 100%;
	border-radius: var(--vc-radius-lg);
	box-shadow: var(--vc-shadow-lg);
	background: #fff;
}

.vc-service-shot {
	border-radius: var(--vc-radius-lg);
	box-shadow: var(--vc-shadow-lg);
	width: 100%;
	display: block;
}

.vc-featured-project__visual--client .vc-device-mockup {
	position: relative;
	z-index: 1;
}

.vc-client-tagline {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--vc-yellow);
	margin-bottom: 0.35rem;
	opacity: 0.95;
}

.vc-client-facts {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
}

.vc-client-facts li {
	font-size: 0.86rem;
	opacity: 0.9;
	margin-bottom: 0.45rem;
	line-height: 1.5;
}

.vc-client-facts li i {
	color: var(--vc-blue);
	width: 1.25rem;
	margin-right: 0.35rem;
}

.vc-featured-project__info .domain a {
	color: var(--vc-blue);
}

.vc-featured-project__info .domain a:hover {
	color: var(--vc-yellow);
}

.vc-client-spotlight {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: rgba(0, 0, 139, 0.06);
	border: 1px solid rgba(0, 0, 139, 0.12);
	border-left: 4px solid var(--vc-blue);
	border-radius: var(--vc-radius-sm);
	padding: 1rem 1.15rem;
	margin-top: 1.25rem;
}

.vc-client-spotlight img {
	flex-shrink: 0;
	max-height: 44px;
	width: auto;
	max-width: 160px;
	object-fit: contain;
	background: #fff;
	padding: 0.35rem 0.65rem;
	border-radius: 6px;
}

.vc-client-spotlight p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.6;
}

.vc-flip-front__logo {
	max-width: 75%;
	max-height: 90px;
	width: auto;
	object-fit: contain;
	margin-bottom: 0.75rem;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.vc-client-card {
	background: #fff;
	border-radius: var(--vc-radius-lg);
	box-shadow: var(--vc-shadow);
	padding: 2rem;
	text-align: center;
	height: 100%;
	border: 1px solid rgba(0, 0, 139, 0.08);
	transition: var(--vc-transition);
}

.vc-client-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--vc-shadow-lg);
}

.vc-client-card img {
	max-height: 72px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	margin-bottom: 1rem;
}

.vc-client-card h4 {
	font-size: 1rem;
	font-weight: 800;
	color: var(--vc-navy);
	margin-bottom: 0.35rem;
}

.vc-client-card .vc-client-tagline {
	color: var(--vc-blue);
	margin-bottom: 0.75rem;
}

.vc-client-card p {
	font-size: 0.86rem;
	color: var(--vc-text-muted);
	line-height: 1.55;
	margin-bottom: 1rem;
}

.vc-featured-project__info {
	flex: 1 1 320px;
	padding: 2.5rem;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.vc-featured-project__info h3 {
	color: var(--vc-yellow);
	font-weight: 800;
	font-size: 1.65rem;
	margin-bottom: 0.5rem;
}

.vc-featured-project__info .domain {
	color: var(--vc-blue);
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.vc-featured-project__info p {
	opacity: 0.88;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.vc-featured-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.vc-featured-tags span {
	background: rgba(255, 235, 59, 0.12);
	border: 1px solid rgba(255, 235, 59, 0.35);
	color: var(--vc-yellow);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.3rem 0.75rem;
	border-radius: 50px;
}

@media (max-width: 767px) {
	.vc-flip-scene { height: 300px; }
	.vc-job-card { min-height: 280px; }
	.vc-bg-card.shape-round { border-radius: var(--vc-radius); clip-path: none; }
	.top-nav .navbar-brand.vc-brand .vc-logo-img { height: 38px; max-width: 170px; }
}

/* ── Interactive enhancements — floating action stack ── */
@keyframes vc-fab-enter {
	0% {
		opacity: 0;
		transform: translateY(22px) scale(0.72);
	}
	70% {
		transform: translateY(-3px) scale(1.05);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes vc-fab-pulse-ring {
	0% { transform: scale(1); opacity: 0.45; }
	100% { transform: scale(1.45); opacity: 0; }
}

@keyframes vc-fab-pulse-shadow {
	0% { box-shadow: 0 8px 24px rgba(0, 0, 139, 0.35), 0 0 0 0 rgba(0, 0, 139, 0.35); }
	100% { box-shadow: 0 8px 24px rgba(0, 0, 139, 0.35), 0 0 0 10px rgba(0, 0, 139, 0); }
}

.vc-fab-stack-ready .vc-wa-float {
	opacity: 0;
}

.vc-fab-stack-ready .vc-back-top.visible {
	opacity: 1;
}

.vc-fab-stack-animate .vc-wa-float {
	animation: vc-fab-enter 0.55s cubic-bezier(0.34, 1.45, 0.64, 1) 0.08s both;
}

.vc-fab-stack-animate .vc-back-top.visible:not(.vc-fab-reenter) {
	animation: vc-fab-enter 0.55s cubic-bezier(0.34, 1.45, 0.64, 1) 0.16s both;
}

.vc-wa-float {
	background: #25d366;
	color: #fff !important;
	font-size: 1.55rem;
	box-shadow: 0 8px 28px rgba(37, 211, 102, 0.42);
}

.vc-wa-float::after {
	border-color: rgba(37, 211, 102, 0.55);
}

.vc-wa-float:hover,
.vc-wa-float:focus-visible {
	box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
	color: #fff !important;
}

.vc-wa-float .vc-fab-fallback {
	display: none;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

/* Tawk.to bottom-left; WhatsApp remains bottom-right on the same line. */
body.vc-fab-stack-ready #tawk-bubble-container,
body.vc-fab-stack-ready .tawk-min-container {
	bottom: var(--vc-fab-inset) !important;
	left: var(--vc-fab-inset) !important;
	right: auto !important;
	width: var(--vc-fab-size) !important;
	height: var(--vc-fab-size) !important;
	min-width: var(--vc-fab-size) !important;
	min-height: var(--vc-fab-size) !important;
	z-index: 9990 !important;
	transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.28s ease !important;
}

body.vc-fab-stack-animate.vc-tawk-ready #tawk-bubble-container,
body.vc-fab-stack-animate.vc-tawk-ready .tawk-min-container {
	animation: vc-fab-enter 0.55s cubic-bezier(0.34, 1.45, 0.64, 1) both, vc-fab-pulse-shadow 2.4s ease-out 1.1s infinite;
}

body.vc-fab-stack-ready #tawk-bubble-container:hover,
body.vc-fab-stack-ready .tawk-min-container:hover {
	transform: scale(1.08) translateY(-3px) !important;
	animation: none !important;
}

.vc-wa-tooltip {
	position: absolute;
	right: calc(100% + 12px);
	background: var(--vc-navy);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 600;
	padding: 0.45rem 0.85rem;
	border-radius: 8px;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(8px);
	transition: opacity 0.25s, transform 0.25s;
	pointer-events: none;
}

.vc-wa-float:hover .vc-wa-tooltip {
	opacity: 1;
	transform: translateX(0);
}

.vc-chat-float {
	position: fixed;
	left: var(--vc-fab-inset);
	right: auto;
	bottom: var(--vc-fab-inset);
	width: var(--vc-fab-size);
	height: var(--vc-fab-size);
	border: 0;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--vc-navy);
	color: #fff;
	font-size: 1.35rem;
	box-shadow: 0 8px 28px rgba(0, 0, 139, 0.38);
	cursor: pointer;
	z-index: 9989;
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

.vc-chat-float:hover,
.vc-chat-float:focus-visible {
	color: #fff;
	transform: scale(1.08) translateY(-3px);
	box-shadow: 0 12px 36px rgba(0, 0, 139, 0.5);
}

.vc-chat-tooltip {
	position: absolute;
	left: calc(100% + 12px);
	padding: 0.45rem 0.85rem;
	border-radius: 8px;
	background: var(--vc-navy);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(-8px);
	transition: opacity 0.25s, transform 0.25s;
	pointer-events: none;
}

.vc-chat-float:hover .vc-chat-tooltip,
.vc-chat-float:focus-visible .vc-chat-tooltip {
	opacity: 1;
	transform: translateX(0);
}

body.vc-tawk-ready .vc-chat-float {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.vc-tilt-card {
	transform-style: preserve-3d;
	will-change: transform;
}

.vc-service-card.vc-tilt-card.is-tilting,
.vc-service-card.vc-tilt-card:hover {
	transform: perspective(900px) rotateX(var(--vc-tilt-x, 0deg)) rotateY(var(--vc-tilt-y, 0deg)) translateY(-10px);
}

.vc-job-card.vc-tilt-card.is-tilting,
.vc-job-card.vc-tilt-card:hover {
	transform: perspective(900px) rotateX(var(--vc-tilt-x, 0deg)) rotateY(var(--vc-tilt-y, 0deg)) translateY(-12px) scale(1.02);
}

.vc-photo-card.vc-tilt-card.is-tilting,
.vc-photo-card.vc-tilt-card:hover {
	transform: perspective(900px) rotateX(var(--vc-tilt-x, 0deg)) rotateY(var(--vc-tilt-y, 0deg)) translateY(-10px);
}

.vc-quick-card.vc-tilt-card.is-tilting,
.vc-quick-card.vc-tilt-card:hover {
	transform: perspective(900px) rotateX(var(--vc-tilt-x, 0deg)) rotateY(var(--vc-tilt-y, 0deg)) translateY(-8px);
}

.vc-bg-card.vc-tilt-card.is-tilting,
.vc-bg-card.vc-tilt-card:hover {
	transform: perspective(900px) rotateX(var(--vc-tilt-x, 0deg)) rotateY(var(--vc-tilt-y, 0deg)) translateY(-8px);
}

.vc-featured-project.vc-tilt-card.is-tilting {
	transform: perspective(1000px) rotateX(var(--vc-tilt-x, 0deg)) rotateY(var(--vc-tilt-y, 0deg));
}

.vc-btn-primary,
.vc-btn-outline,
.vc-nav-cta,
.vc-btn-flip,
.vc-btn-pill,
.vc-btn-cut {
	position: relative;
	overflow: hidden;
}

.vc-ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	transform: scale(0);
	animation: vc-ripple 0.65s ease-out;
	pointer-events: none;
}

@keyframes vc-ripple {
	to {
		transform: scale(2.5);
		opacity: 0;
	}
}

.vc-stat-item .vc-stat-num {
	display: inline-block;
	transition: transform 0.3s ease, color 0.3s ease;
}

.vc-stat-item.vc-stat-pulse .vc-stat-num {
	transform: scale(1.08);
	color: var(--vc-yellow);
}

@media (max-width: 575px) {
	:root {
		--vc-fab-size: 48px;
		--vc-fab-gap: 10px;
		--vc-fab-inset: 16px;
		--vc-carousel-control-size: 36px;
		--vc-carousel-control-inset: 10px;
	}

	.vc-wa-float {
		font-size: 1.35rem;
	}

	.vc-wa-tooltip { display: none; }

	.vc-cut-banner-caption {
		padding-bottom: 5rem !important;
	}

	.vc-hero-wrap .carousel-control-prev,
	.vc-hero-wrap .carousel-control-next {
		bottom: 3.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vc-fab-item,
	.vc-fab-item::after,
	.vc-back-top,
	#tawk-bubble-container,
	.tawk-min-container {
		animation: none !important;
		transition: none !important;
	}

	.vc-fab-stack-ready .vc-wa-float {
		opacity: 1;
	}
	.vc-preloader-logo { animation: none; }
	.vc-hero-wrap .carousel-caption { transition: none; }
	.vc-tilt-card.is-tilting { transform: none !important; }
	.carousel-item.active .vc-hero-bg { animation: none; }
	.vc-gallery-marquee__track { animation: none; }
}

/* ── Enterprise trust bar (CUT-inspired) ── */
.vc-enterprise-bar {
	background: linear-gradient(180deg, var(--vc-surface-blue) 0%, #fff 100%);
	padding: 4.5rem 0;
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(0, 0, 139, 0.06);
	border-bottom: 1px solid rgba(0, 0, 139, 0.06);
}

.vc-enterprise-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--vc-blue), var(--vc-yellow), var(--vc-blue));
}

.vc-enterprise-bar::after {
	content: '';
	position: absolute;
	bottom: -120px;
	right: -80px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(0, 0, 139, 0.04);
	pointer-events: none;
}

.vc-enterprise-bar .vc-section-label {
	color: var(--vc-blue);
}

.vc-enterprise-bar .vc-section-title {
	color: var(--vc-navy) !important;
}

.vc-enterprise-bar .vc-section-sub {
	color: var(--vc-text-muted) !important;
}

.vc-enterprise-pillar {
	background: #fff;
	border: 1px solid rgba(0, 0, 139, 0.08);
	border-radius: var(--vc-radius);
	padding: 2rem 1.75rem;
	height: 100%;
	transition: var(--vc-transition);
	box-shadow: var(--vc-shadow-sm);
}

.vc-enterprise-pillar:hover {
	border-color: rgba(0, 0, 139, 0.16);
	transform: translateY(-4px);
	box-shadow: var(--vc-shadow);
}

.vc-enterprise-pillar__icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: var(--vc-yellow);
	color: var(--vc-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
}

.vc-enterprise-pillar h4 {
	color: var(--vc-navy);
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.vc-enterprise-pillar p {
	color: var(--vc-text-muted);
	font-size: 0.95rem;
	line-height: 1.65;
	margin: 0;
}

.vc-btn-outline-light {
	border: 2px solid var(--vc-blue);
	color: var(--vc-blue);
	background: transparent;
}

.vc-btn-outline-light:hover {
	background: var(--vc-blue);
	color: #fff;
	border-color: var(--vc-blue);
}

.vc-section-dark .vc-stat-item .vc-stat-num i {
	font-size: 2rem;
	color: var(--vc-yellow);
}

.vc-float-card strong {
	font-size: 1.1rem;
	letter-spacing: 0.02em;
}

/* ── Software product cards ── */
.vc-product-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 139, 0.08);
	border-radius: var(--vc-radius);
	padding: 1.75rem 1.5rem;
	height: 100%;
	box-shadow: var(--vc-shadow-sm);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	display: flex;
	flex-direction: column;
}

.vc-product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--vc-shadow);
	border-color: rgba(0, 0, 139, 0.16);
}

.vc-product-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--vc-surface-blue);
	color: var(--vc-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.vc-product-card__icon--yellow {
	background: rgba(255, 235, 59, 0.28);
	color: var(--vc-navy);
}

.vc-product-card__icon--navy {
	background: rgba(0, 0, 44, 0.08);
	color: var(--vc-navy);
}

.vc-product-card__tag {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--vc-blue);
	background: var(--vc-surface-blue);
	padding: 0.22rem 0.6rem;
	border-radius: 4px;
	margin-bottom: 0.65rem;
}

.vc-product-card h4 {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--vc-navy);
	margin-bottom: 0.65rem;
	line-height: 1.35;
}

.vc-product-card p {
	font-size: 0.88rem;
	color: var(--vc-text-muted);
	line-height: 1.65;
	margin-bottom: 1rem;
	flex: 1;
}

.vc-product-card__link {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--vc-blue);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: gap 0.25s;
}

.vc-product-card:hover .vc-product-card__link {
	gap: 0.6rem;
}

.vc-product-card--detail {
	padding: 2rem 1.75rem;
}

.vc-product-card__features {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--vc-gray-dark);
	padding-top: 1rem;
}

.vc-product-card__features li {
	font-size: 0.82rem;
	color: var(--vc-text);
	padding: 0.3rem 0 0.3rem 1.35rem;
	position: relative;
	line-height: 1.5;
}

.vc-product-card__features li:before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: var(--vc-blue);
	font-size: 0.72rem;
	top: 0.45rem;
}

#software-systems {
	background: var(--vc-surface);
}

#library-systems {
	background: linear-gradient(180deg, var(--vc-surface) 0%, #ffffff 55%, var(--vc-surface) 100%);
}

#library-systems .vc-library-logos__item {
	animation: vc-library-float-in 0.7s ease both;
}

#library-systems .vc-library-logos__item:nth-child(1) { animation-delay: 0.05s; }
#library-systems .vc-library-logos__item:nth-child(2) { animation-delay: 0.12s; }
#library-systems .vc-library-logos__item:nth-child(3) { animation-delay: 0.19s; }
#library-systems .vc-library-logos__item:nth-child(4) { animation-delay: 0.26s; }
#library-systems .vc-library-logos__item:nth-child(5) { animation-delay: 0.33s; }
#library-systems .vc-library-logos__item:nth-child(6) { animation-delay: 0.4s; }

@keyframes vc-library-float-in {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── Library system logos ── */
.vc-library-logos {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, #ffffff 0%, #f8faff 45%, #eef3ff 100%);
	border-radius: var(--vc-radius-lg);
	border: 1px solid rgba(0, 0, 139, 0.1);
	box-shadow:
		0 12px 40px rgba(0, 0, 44, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	position: relative;
	overflow: hidden;
}

.vc-library-logos::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 235, 59, 0.08) 50%, transparent 70%);
	pointer-events: none;
}

.vc-library-logos__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 78px;
	padding: 0.85rem 1rem;
	background: linear-gradient(160deg, #ffffff 0%, #f7f9ff 100%);
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 139, 0.08);
	box-shadow:
		0 6px 20px rgba(0, 0, 44, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.vc-library-logos__item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -130%;
	width: 55%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
	transform: skewX(-20deg);
	transition: left 0.7s ease;
	pointer-events: none;
	z-index: 2;
}

.vc-library-logos__item:hover {
	transform: translateY(-6px) scale(1.02);
	border-color: rgba(0, 0, 139, 0.2);
	box-shadow:
		0 16px 36px rgba(0, 0, 139, 0.14),
		0 0 0 1px rgba(255, 235, 59, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 1);
}

.vc-library-logos__item:hover::before {
	left: 140%;
}

.vc-library-logos__item img {
	position: relative;
	z-index: 1;
	max-height: 46px;
	max-width: 100%;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 44, 0.08));
	transition: transform 0.35s ease, filter 0.35s ease;
}

.vc-library-logos__item:hover img {
	transform: scale(1.06);
	filter: drop-shadow(0 4px 12px rgba(0, 0, 139, 0.15));
}

.vc-library-logo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 76px;
	margin-bottom: 1rem;
	padding: 0.9rem 1.15rem;
	background: linear-gradient(160deg, #ffffff 0%, #f4f7ff 100%);
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 139, 0.1);
	box-shadow:
		0 8px 24px rgba(0, 0, 44, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	overflow: hidden;
}

.vc-library-logo::before {
	content: '';
	position: absolute;
	top: 0;
	left: -130%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
	transform: skewX(-18deg);
	animation: vc-logo-shine 4s ease-in-out infinite;
	pointer-events: none;
}

.vc-library-logo img {
	position: relative;
	z-index: 1;
	max-height: 48px;
	max-width: 100%;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 44, 0.1));
}

.vc-library-card {
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.vc-library-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 48px rgba(0, 0, 139, 0.12);
	border-color: rgba(0, 0, 139, 0.18);
}

.vc-library-card:hover .vc-library-logo {
	border-color: rgba(255, 235, 59, 0.55);
	box-shadow:
		0 12px 28px rgba(0, 0, 139, 0.12),
		inset 0 0 0 1px rgba(255, 235, 59, 0.25);
}

.vc-library-logos--hero {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	min-height: 300px;
	align-content: center;
	padding: 1.25rem;
	background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
}

.vc-library-logos--hero .vc-library-logos__item {
	min-height: 84px;
}

.vc-library-logos--compact {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.65rem;
	padding: 0.85rem;
	margin-top: 0.35rem;
	background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
	border-radius: var(--vc-radius);
}

.vc-library-logos--compact .vc-library-logos__item {
	min-height: 58px;
	padding: 0.55rem 0.65rem;
	border-radius: 10px;
}

.vc-library-logos--compact .vc-library-logos__item img {
	max-height: 32px;
}

#library-systems .vc-library-logos:not(.vc-library-logos--hero) {
	margin-bottom: 2rem;
}

@keyframes vc-logo-shine {
	0%, 78%, 100% { left: -130%; }
	40% { left: 140%; }
}

@media (max-width: 1199px) {
	.vc-library-logos,
	.vc-library-logos--compact {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.vc-library-logos--hero {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.vc-library-logos--hero {
		min-height: auto;
		margin-top: 1rem;
	}
}

@media (max-width: 767px) {
	.vc-library-logos,
	.vc-library-logos--compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 1rem;
	}

	.vc-library-logos__item,
	.vc-library-logos--hero .vc-library-logos__item {
		min-height: 70px;
	}
}

@media (max-width: 575px) {
	.vc-library-logos,
	.vc-library-logos--compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.vc-library-logos__item img {
		max-height: 38px;
	}

	.vc-library-logo {
		min-height: 68px;
		padding: 0.75rem;
	}

	.vc-library-logo img {
		max-height: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vc-library-logos__item::before,
	.vc-library-logo::before {
		animation: none;
		transition: none;
	}

	.vc-library-logos__item:hover,
	.vc-library-card:hover {
		transform: none;
	}
}

/* ══════════════════════════════════════════════════════════
   Motion & interactivity — homepage premium layer
   ══════════════════════════════════════════════════════════ */

/* Floating hero shapes */
.vc-hero-shapes {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
}

.vc-hero-shape {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 235, 59, 0.25) 0%, transparent 70%);
	animation: vc-shape-float 8s ease-in-out infinite;
}

.vc-hero-shape--1 {
	width: 320px;
	height: 320px;
	top: 10%;
	left: -5%;
	animation-delay: 0s;
}

.vc-hero-shape--2 {
	width: 220px;
	height: 220px;
	top: 55%;
	right: 8%;
	animation-delay: -2.5s;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.vc-hero-shape--3 {
	width: 160px;
	height: 160px;
	bottom: 18%;
	left: 42%;
	animation-delay: -5s;
}

@keyframes vc-shape-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(18px, -24px) scale(1.06); }
}

/* Hero scroll hint */
.vc-hero-scroll {
	position: absolute;
	bottom: 72px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none !important;
	animation: vc-scroll-bounce 2s ease-in-out infinite;
}

.vc-hero-scroll i {
	font-size: 1rem;
	color: var(--vc-yellow);
}

@keyframes vc-scroll-bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(8px); }
}

/* Staggered hero text reveal */
.vc-hero-animate > * {
	opacity: 0;
	transform: translateY(36px);
}

.carousel-item.active .vc-hero-animate > * {
	animation: vc-hero-reveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.carousel-item.active .vc-hero-animate > *:nth-child(1) { animation-delay: 0.08s; }
.carousel-item.active .vc-hero-animate > *:nth-child(2) { animation-delay: 0.2s; }
.carousel-item.active .vc-hero-animate > *:nth-child(3) { animation-delay: 0.32s; }
.carousel-item.active .vc-hero-animate > *:nth-child(4) { animation-delay: 0.44s; }
.carousel-item.active .vc-hero-animate > *:nth-child(5) { animation-delay: 0.56s; }
.carousel-item.active .vc-hero-animate > *:nth-child(6) { animation-delay: 0.68s; }

@keyframes vc-hero-reveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Rotating words */
.vc-word-rotate {
	display: inline-block;
	color: var(--vc-yellow);
	position: relative;
	min-width: 0.5em;
}

.vc-word-rotate.is-changing {
	animation: vc-word-out 0.35s ease forwards;
}

.vc-word-rotate.is-entering {
	animation: vc-word-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vc-cut-banner-title .vc-word-rotate:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.08em;
	height: 5px;
	background: var(--vc-yellow);
	z-index: -1;
}

.vc-word-cursor {
	display: inline-block;
	color: var(--vc-yellow);
	font-weight: 300;
	margin-left: 2px;
	animation: vc-cursor-blink 1s step-end infinite;
}

@keyframes vc-cursor-blink {
	50% { opacity: 0; }
}

@keyframes vc-word-out {
	to {
		opacity: 0;
		transform: translateY(-18px);
		filter: blur(4px);
	}
}

@keyframes vc-word-in {
	from {
		opacity: 0;
		transform: translateY(22px);
		filter: blur(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

/* Moving words ticker */
.vc-text-ticker {
	position: relative;
	z-index: 4;
	overflow: hidden;
	background: linear-gradient(90deg, var(--vc-navy), var(--vc-blue), var(--vc-navy));
	border-bottom: 3px solid var(--vc-yellow);
	padding: 0.85rem 0;
}

.vc-text-ticker__track {
	display: flex;
	width: max-content;
	animation: vc-ticker 32s linear infinite;
}

.vc-text-ticker__set {
	display: flex;
	gap: 2.5rem;
	padding-right: 2.5rem;
}

.vc-text-ticker span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
	font-size: 0.88rem;
	font-weight: 700;
	white-space: nowrap;
	letter-spacing: 0.02em;
}

.vc-text-ticker span i {
	color: var(--vc-yellow);
	font-size: 0.95rem;
}

.vc-text-ticker:hover .vc-text-ticker__track {
	animation-play-state: paused;
}

@keyframes vc-ticker {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* Images rising on scroll */
.vc-rise {
	will-change: transform;
}

.vc-rise.vc-visible {
	animation: vc-rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vc-rise-img {
	transition: transform 0.1s linear;
	will-change: transform;
}

@keyframes vc-rise-in {
	from {
		opacity: 0;
		transform: translateY(72px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Gentle floating motion */
.vc-float-motion {
	animation: vc-gentle-float 5s ease-in-out infinite;
}

@keyframes vc-gentle-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

.vc-rise.vc-float-motion.vc-visible {
	animation: vc-rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards, vc-gentle-float 5s ease-in-out 1s infinite;
}

/* Brighter quick card photos */
.vc-quick-card__bg {
	filter: brightness(1.1) saturate(1.15);
}

/* Magnetic button hint */
.vc-btn-magnetic {
	transition: transform 0.2s ease;
}

/* Section title shimmer on visible */
.vc-section-title.vc-shimmer-ready {
	background: linear-gradient(90deg, var(--vc-navy) 0%, var(--vc-blue) 40%, var(--vc-navy) 80%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.vc-section-title.vc-shimmer-active {
	animation: vc-title-shimmer 3s linear infinite;
}

@keyframes vc-title-shimmer {
	to { background-position: 200% center; }
}

@media (max-width: 767px) {
	.vc-hero-scroll { display: none; }
	.vc-hero-shape--1 { width: 180px; height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
	.vc-hero-shape,
	.vc-hero-scroll,
	.vc-float-motion,
	.vc-text-ticker__track {
		animation: none !important;
	}

	.vc-hero-animate > *,
	.carousel-item.active .vc-hero-animate > * {
		opacity: 1;
		transform: none;
		animation: none !important;
	}

	.vc-word-cursor { display: none; }
}

/* ══════════════════════════════════════════════════════════
   Cookie consent banner & preferences modal
   ══════════════════════════════════════════════════════════ */

.vc-cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10050;
	padding: 1rem;
	transform: translateY(110%);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
	pointer-events: none;
}

.vc-cookie-banner.is-visible {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.vc-cookie-banner__inner {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	padding: 1.15rem 1.35rem;
	background: linear-gradient(135deg, var(--vc-navy) 0%, var(--vc-blue) 100%);
	border: 1px solid rgba(255, 235, 59, 0.35);
	border-radius: var(--vc-radius-lg, 14px);
	box-shadow: 0 16px 48px rgba(0, 0, 44, 0.35);
}

.vc-cookie-banner__title {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--vc-yellow);
	letter-spacing: 0.01em;
}

.vc-cookie-banner__text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	max-width: 52rem;
}

.vc-cookie-banner__link {
	color: var(--vc-yellow);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.vc-cookie-banner__link:hover {
	color: #fff;
}

.vc-cookie-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	justify-content: flex-end;
}

.vc-cookie-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.5rem;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.2;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}

.vc-cookie-btn:hover {
	transform: translateY(-1px);
}

.vc-cookie-btn--primary {
	background: var(--vc-yellow);
	color: var(--vc-navy);
	border-color: var(--vc-yellow);
}

.vc-cookie-btn--primary:hover {
	background: var(--vc-yellow-soft, #fff176);
	border-color: var(--vc-yellow-soft, #fff176);
	color: var(--vc-navy);
}

.vc-cookie-btn--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.65);
}

.vc-cookie-btn--outline:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
	color: #fff;
}

.vc-cookie-btn--ghost {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 235, 59, 0.45);
}

.vc-cookie-btn--ghost:hover {
	background: rgba(255, 235, 59, 0.16);
	border-color: var(--vc-yellow);
}

.vc-cookie-modal {
	position: fixed;
	inset: 0;
	z-index: 10060;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s;
}

.vc-cookie-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.vc-cookie-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 44, 0.72);
}

.vc-cookie-modal__panel {
	position: relative;
	width: min(100%, 560px);
	max-height: calc(100vh - 2rem);
	overflow: auto;
	background: #fff;
	border-radius: var(--vc-radius-lg, 14px);
	box-shadow: 0 24px 64px rgba(0, 0, 44, 0.28);
	border: 1px solid rgba(0, 0, 139, 0.1);
}

.vc-cookie-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.25rem;
	border-bottom: 1px solid rgba(0, 0, 139, 0.08);
	background: linear-gradient(180deg, #fff 0%, var(--vc-gray, #f0f4fa) 100%);
}

.vc-cookie-modal__header h2 {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--vc-navy);
}

.vc-cookie-modal__close {
	border: 0;
	background: transparent;
	color: var(--vc-navy);
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.15rem 0.35rem;
	border-radius: 8px;
}

.vc-cookie-modal__close:hover {
	background: rgba(0, 0, 139, 0.08);
}

.vc-cookie-modal__body {
	padding: 1.15rem 1.25rem 0.5rem;
}

.vc-cookie-modal__intro {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--vc-text-muted, #5a6478);
}

.vc-cookie-modal__intro a {
	color: var(--vc-blue);
	font-weight: 700;
}

.vc-cookie-pref__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.95rem 0;
	border-bottom: 1px solid rgba(0, 0, 139, 0.08);
}

.vc-cookie-pref__row:last-child {
	border-bottom: 0;
}

.vc-cookie-pref__row strong {
	display: block;
	color: var(--vc-navy);
	font-size: 0.95rem;
	margin-bottom: 0.2rem;
}

.vc-cookie-pref__row span {
	display: block;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--vc-text-muted, #5a6478);
}

.vc-cookie-pref__row code {
	font-size: 0.78rem;
}

.vc-cookie-pref__badge {
	flex-shrink: 0;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--vc-navy);
	background: rgba(255, 235, 59, 0.45);
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
}

.vc-cookie-switch {
	position: relative;
	display: inline-flex;
	flex-shrink: 0;
	width: 48px;
	height: 28px;
}

.vc-cookie-switch input {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.vc-cookie-switch span {
	position: absolute;
	cursor: pointer;
	inset: 0;
	background: #c5cedb;
	border-radius: 999px;
	transition: background 0.2s ease;
}

.vc-cookie-switch span:before {
	content: '';
	position: absolute;
	height: 22px;
	width: 22px;
	left: 3px;
	top: 3px;
	background: #fff;
	border-radius: 50%;
	transition: transform 0.2s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 44, 0.18);
}

.vc-cookie-switch input:checked + span {
	background: var(--vc-blue);
}

.vc-cookie-switch input:checked + span:before {
	transform: translateX(20px);
}

.vc-cookie-switch input:focus-visible + span {
	outline: 2px solid var(--vc-yellow);
	outline-offset: 2px;
}

.vc-cookie-modal__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.55rem;
	padding: 0.85rem 1.25rem 1.15rem;
	border-top: 1px solid rgba(0, 0, 139, 0.08);
	background: #fff;
}

body.vc-cookie-banner-open {
	padding-bottom: env(safe-area-inset-bottom, 0);
}

.footer .copyright a[data-vc-cookie-settings],
.vc-att-footer__copy a[data-vc-cookie-settings],
.vc-car-footer-copy a[data-vc-cookie-settings] {
	color: var(--vc-yellow, #ffeb3b);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.footer .copyright a[data-vc-cookie-settings]:hover,
.vc-att-footer__copy a[data-vc-cookie-settings]:hover,
.vc-car-footer-copy a[data-vc-cookie-settings]:hover {
	color: #fff;
}

@media (max-width: 767px) {
	.vc-cookie-banner {
		padding: 0.65rem;
	}

	.vc-cookie-banner__inner {
		padding: 1rem;
	}

	.vc-cookie-banner__actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.vc-cookie-btn {
		width: 100%;
	}

	.vc-cookie-pref__row {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vc-cookie-banner,
	.vc-cookie-modal,
	.vc-cookie-btn,
	.vc-cookie-switch span,
	.vc-cookie-switch span:before {
		transition: none !important;
	}
}

/* Partners showcase */
.vc-partners {
  background: #fff;
  border-top: 1px solid #e8ebf3;
  border-bottom: 1px solid #e8ebf3;
}

.vc-partners-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid #e5e8f0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 44, 0.05);
}

.vc-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 108px;
  padding: 1.25rem 1rem;
  background: #fff;
  border-right: 1px solid #e5e8f0;
  border-bottom: 1px solid #e5e8f0;
  text-decoration: none !important;
  color: #18213a;
  transition: background 0.25s ease, color 0.25s ease;
}

.vc-partner-logo:hover {
  background: #f8f9fd;
  color: #00008b;
}

.vc-partner-logo__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: #f0f2f8;
  color: #00008b;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: background 0.25s ease, color 0.25s ease;
}

.vc-partner-logo:hover .vc-partner-logo__mark {
  background: #00008b;
  color: #ffeb3b;
}

.vc-partner-logo strong {
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .vc-partners-cloud {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .vc-partner-logo:nth-child(5n) {
    border-right: 0;
  }

  .vc-partner-logo:nth-last-child(-n+5) {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .vc-partner-logo:nth-child(2n) {
    border-right: 0;
  }

  .vc-partner-logo:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

/* ── Homepage full-bleed hero with overlapping portal cards ── */
.vc-hero-with-rails {
	background: var(--vc-navy);
}

.vc-hero-with-rails .vc-hero-rails-layout {
	display: block;
	padding: 0;
}

.vc-hero-with-rails .vc-hero-rails-center {
	width: 100%;
}

.vc-hero-with-rails .vc-cut-banner-overlay {
	background:
		linear-gradient(90deg, rgba(0, 0, 44, 0.54) 0%, rgba(0, 0, 44, 0.2) 28%, rgba(0, 0, 139, 0.25) 60%, rgba(0, 0, 44, 0.55) 100%),
		linear-gradient(180deg, rgba(0, 0, 44, 0.08), rgba(0, 0, 44, 0.42));
}

@media (min-width: 1200px) {
	.vc-hero-with-rails .vc-hero-rail {
		position: absolute;
		top: 50%;
		z-index: 8;
		display: flex;
		width: 214px;
		padding: 0;
		gap: 0.75rem;
		transform: translateY(-54%);
	}

	.vc-hero-with-rails .vc-hero-rail--left {
		left: clamp(0.75rem, 1.5vw, 1.5rem);
	}

	.vc-hero-with-rails .vc-hero-rail--right {
		right: clamp(0.75rem, 1.5vw, 1.5rem);
	}

	.vc-hero-with-rails .vc-hero-side-card {
		min-height: 126px;
		margin-top: 0;
		border-radius: 22px 7px 22px 7px;
		box-shadow: 0 16px 38px rgba(0, 0, 35, 0.42);
		animation: none;
		opacity: 1;
	}

	.vc-hero-with-rails .vc-hero-rail--left .vc-hero-side-card:nth-child(1) {
		width: 88%;
		transform: translateX(0.65rem) rotate(-1.2deg);
	}

	.vc-hero-with-rails .vc-hero-rail--left .vc-hero-side-card:nth-child(2) {
		width: 100%;
		transform: translateX(-0.35rem) rotate(1deg);
	}

	.vc-hero-with-rails .vc-hero-rail--left .vc-hero-side-card:nth-child(3) {
		width: 91%;
		transform: translateX(0.9rem) rotate(-0.7deg);
	}

	.vc-hero-with-rails .vc-hero-rail--right .vc-hero-side-card:nth-child(1) {
		width: 88%;
		align-self: flex-end;
		transform: translateX(-0.65rem) rotate(1.2deg);
	}

	.vc-hero-with-rails .vc-hero-rail--right .vc-hero-side-card:nth-child(2) {
		width: 100%;
		transform: translateX(0.35rem) rotate(-1deg);
	}

	.vc-hero-with-rails .vc-hero-rail--right .vc-hero-side-card:nth-child(3) {
		width: 91%;
		align-self: flex-end;
		transform: translateX(-0.9rem) rotate(0.7deg);
	}

	.vc-hero-with-rails .vc-hero-side-card:hover {
		z-index: 10;
		transform: translateX(0) translateY(-7px) rotate(0) scale(1.04) !important;
	}

	.vc-hero-with-rails .vc-hero-side-card__body {
		padding: 0.9rem 1rem 1rem;
	}

	.vc-hero-with-rails .vc-cut-banner-caption {
		max-width: 660px;
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}

	.vc-hero-with-rails .carousel-control-prev { left: 240px; }
	.vc-hero-with-rails .carousel-control-next { right: 240px; }
}

@media (min-width: 1500px) {
	.vc-hero-with-rails .vc-hero-rail {
		width: 238px;
	}

	.vc-hero-with-rails .carousel-control-prev { left: 270px; }
	.vc-hero-with-rails .carousel-control-next { right: 270px; }
}

@supports (content-visibility: auto) {
	body.vc-home-page .vc-section,
	body.vc-home-page .vc-cta-band {
		content-visibility: auto;
		contain-intrinsic-size: auto 620px;
	}
}
