/*!
Theme Name: vrilex
Author: Vipul Ande
Author URI: http://vrilex.com
Description: This theme is for Vrilex it  is a leading IT solution provider and consulting company delivering deep expertise. The packages support HTML, CSS, and JS.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6

Text Domain: vrilex

*/

.vn-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	overflow: visible;
	background: rgba(2, 13, 26, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 0.5px solid rgba(167, 235, 242, 0.08);
	font-family: 'DM Sans', sans-serif;
	transition: background 0.3s ease, box-shadow 0.3s ease;
}

.vn-nav.scrolled {
	background: rgba(2, 13, 26, 0.97);
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.vn-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

/* LOGO */
.vn-logo {
	display: flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	flex-shrink: 0;
}

.vn-logo-name {
	font-family: 'Syne', sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}

.vn-logo-name span {
	color: #A7EBF2;
}

/* DESKTOP LINKS */
.vn-links {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	flex: 1;
	justify-content: center;
}

.vn-links li {
	position: relative;
}

.vn-links a {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	padding: 6px 14px;
	border-radius: 8px;
	transition: color 0.2s, background 0.2s;
	white-space: nowrap;
}

.vn-links a:hover {
	color: #fff;
	background: rgba(167, 235, 242, 0.06);
}

.vn-links a.active {
	color: #A7EBF2;
}

.vn-arrow {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.3);
	transition: transform 0.2s;
}

.vn-links li:hover .vn-arrow {
	transform: rotate(180deg);
	color: #A7EBF2;
}

/* DROPDOWN */
.vn-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: #041525;
	border: 0.5px solid rgba(167, 235, 242, 0.12);
	border-radius: 12px;
	padding: 8px;
	min-width: 180px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity 0.2s, transform 0.2s;
	list-style: none;
}

.vn-links li:hover .vn-dropdown {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0);
}

.vn-dropdown a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	padding: 8px 12px;
	border-radius: 8px;
	display: block;
}

.vn-dropdown a:hover {
	color: #A7EBF2;
	background: rgba(167, 235, 242, 0.06);
}

/* ACTIONS */
.vn-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.vn-btn-ghost {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	padding: 6px 14px;
	border-radius: 8px;
	transition: color 0.2s, background 0.2s;
}

.vn-btn-ghost:hover {
	color: #fff;
	background: rgba(167, 235, 242, 0.06);
}

.vn-btn-cta {
	font-size: 13px;
	font-weight: 600;
	color: #020D1A;
	background: #A7EBF2;
	text-decoration: none;
	padding: 8px 18px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: background 0.2s, transform 0.2s;
}

.vn-btn-cta:hover {
	background: #c8f4f9;
	transform: translateY(-1px);
}

.vn-btn-cta .arr {
	display: inline-block;
	transition: transform 0.2s;
}

.vn-btn-cta:hover .arr {
	transform: translateX(3px);
}

/* BURGER */
.vn-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
	background: none;
	border: none;
}

.vn-burger span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

.vn-burger.open span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.vn-burger.open span:nth-child(2) {
	opacity: 0;
	width: 0;
}

.vn-burger.open span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

/* MOBILE MENU */
.vn-mobile {
	display: none;
	flex-direction: column;
	background: #041525;
	border-top: 0.5px solid rgba(167, 235, 242, 0.08);
	padding: 16px 24px 24px;
	gap: 2px;
	position: relative;
	z-index: 101;
	width: 100%;
	box-sizing: border-box;
}

.vn-mobile.open {
	display: flex;
}

.vn-mobile a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	padding: 10px 12px;
	border-radius: 8px;
	transition: color 0.2s, background 0.2s;
	border-bottom: 0.5px solid rgba(167, 235, 242, 0.05);
}
.vn-mobile-menu li{
    margin-bottom: 5px;
}

.vn-mobile a:hover {
	color: #A7EBF2;
	background: rgba(167, 235, 242, 0.05);
}

.vn-mobile-label {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #54ACBF;
	padding: 14px 12px 6px;
	display: block;
}

.vn-mobile-cta {
	margin-top: 12px;
	background: #A7EBF2 !important;
	color: #020D1A !important;
	font-weight: 600 !important;
	text-align: center;
	border-radius: 10px !important;
	padding: 12px !important;
	border-bottom: none !important;
}

.vn-mobile-cta:hover {
	background: #c8f4f9 !important;
}

.vn-links,
.vn-mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 991.98px) {

	body.vn-mobile-nav-open {
		overflow: hidden;
	}

	.vn-links,
	.vn-actions {
		display: none !important;
	}

	.vn-burger {
		display: flex;
		position: relative;
		z-index: 102;
	}

	.vn-inner {
		padding: 0 20px;
	}
}

/* Footer */
.vf-footer {
	background: #020D1A;
	font-family: 'DM Sans', sans-serif;
	position: relative;
	overflow: hidden;
}

.vf-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(167, 235, 242, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(167, 235, 242, 0.025) 1px, transparent 1px);
	background-size: 48px 48px;
	pointer-events: none;
}

/* BIG TYPE */
.vf-hero {
	padding: 64px 48px 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.vf-hero-text {
	font-family: 'Syne', sans-serif;
	font-size: clamp(52px, 10vw, 110px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: rgba(255, 255, 255, 0.07);
	user-select: none;
	pointer-events: none;
}

.vf-hero-text span {
	color: rgba(167, 235, 242, 0.12);
}

/* MAIN GRID */
.vf-main {
	padding: 48px 48px 40px;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	border-top: 0.5px solid rgba(167, 235, 242, 0.08);
}

.vf-brand-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	text-decoration: none;
}

.vf-brand-name {
	font-family: 'Syne', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}

.vf-brand-name span {
	color: #A7EBF2;
}

.vf-brand-desc {
	font-size: 13px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.7;
	margin-bottom: 24px;
	max-width: 220px;
}

.vf-social {
	display: flex;
	gap: 10px;
}

.vf-social-btn {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	border: 0.5px solid rgba(167, 235, 242, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	font-size: 13px;
	transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.vf-social-btn:hover {
	border-color: #A7EBF2;
	color: #A7EBF2;
	background: rgba(167, 235, 242, 0.06);
}

.vf-col-label {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #54ACBF;
	margin-bottom: 18px;
	display: block;
}

.vf-nav {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.vf-nav a {
	font-size: 13px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	transition: color 0.2s;
}

.vf-nav a:hover {
	color: #A7EBF2;
}

/* CONTACT ROW */
.vf-contact-row {
	padding: 32px 48px 36px;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr) auto;
	gap: 24px;
	align-items: end;
	border-top: 0.5px solid rgba(167, 235, 242, 0.08);
}

.vf-contact-label {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(167, 235, 242, 0.4);
	margin-bottom: 5px;
	display: block;
}

.vf-contact-val {
	font-size: 13px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.2s;
	display: block;
}

.vf-contact-val:hover {
	color: #A7EBF2;
}

.vf-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 0.5px solid rgba(167, 235, 242, 0.15);
	border-radius: 10px;
	padding: 8px 14px;
	white-space: nowrap;
}

.vf-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #A7EBF2;
	animation: blink 2s ease-in-out infinite;
}

.vf-badge-text {
	font-size: 11px;
	color: rgba(167, 235, 242, 0.7);
	letter-spacing: 0.06em;
}

@keyframes blink {

	0%,
	100% {
		opacity: 1
	}

	50% {
		opacity: 0.3
	}
}

/* BOTTOM BAR */
.vf-bottom {
	padding: 16px 48px;
	border-top: 0.5px solid rgba(167, 235, 242, 0.06);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 1;
	flex-wrap: wrap;
	gap: 12px;
}

.vf-bottom-left {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.vf-bottom-link {
	font-size: 11px;
	font-weight: 300;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.2);
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.2s;
}

.vf-bottom-link:hover {
	color: rgba(167, 235, 242, 0.6);
}

.vf-copy {
	font-size: 11px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.18);
}

.vf-top-btn {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	border: 0.5px solid rgba(167, 235, 242, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	text-decoration: none;
	transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.vf-top-btn:hover {
	border-color: #A7EBF2;
	color: #A7EBF2;
	background: rgba(167, 235, 242, 0.06);
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.vf-main {
		grid-template-columns: 1fr 1fr;
	}

	.vf-contact-row {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.vf-hero {
		padding: 40px 24px 0;
	}

	.vf-main {
		grid-template-columns: 1fr;
		padding: 36px 24px 28px;
		gap: 28px;
	}

	.vf-contact-row {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.vf-bottom {
		padding: 14px 24px;
		flex-direction: column;
		align-items: flex-start;
	}
}

.vrilex-quets-slide-section {
	padding: 80px 20px;
	text-align: center;
    background: #f4f9fb;
}

.vrilex-quets-slide-container {
	max-width: 1200px;
	margin: auto;
}

.vrilex-quets-slide-title {
	font-size: 40px;
	font-weight: bold;
	color: #020D1A;
}

.vrilex-quets-slide-subtitle {
	font-size: 18px;
	max-width: 800px;
	margin: 0 auto 50px;
}

.vrilex-quets-slide-slider {
	overflow: hidden;
	cursor: grab;
}

.vrilex-quets-slide-track {
	display: flex;
	gap: 30px;
}

.vrilex-quets-slide-item {
	min-width: calc(50% - 15px);
	padding: 40px;
	text-align: left;
	background-color: #fff;
	border-radius: 16px;
}

.vrilex-quets-slide-quote {
	width: 60px;
	height: 60px;
	fill: #1e4d8f;
}

.vrilex-quets-slide-item p {
	font-size: 18px;
	margin-bottom: 30px;
}

.vrilex-quets-slide-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.vrilex-quets-slide-author img {
	width: 55px;
	height: 55px;
	border-radius: 50%;
}

/* Mobile */
@media (max-width: 768px) {
	.vrilex-quets-slide-item {
		min-width: 100%;
	}
}