
/* ============================================
   WRAPPER & CONTAINER
============================================ */
.vision-style1 .sec-title h2 {
	color:#fff;
}

.vision-style1 .sec-title .sub-title {
    margin-bottom: 0px;
}
.parallax-slider-wrap {
	position: relative;
	height: 70vh;
	display: block;
	max-height: 800px;
	min-height: 85vh;
	margin-top: 0px;
}

.parallax-slider {
	display: flex;
	width: 98vw;
	margin: auto;
	overflow: hidden;
	position: relative;
	min-height: 80vh;
}

.about-style1__img_mobile {
		display:none;
	}

.hero-inner .container {
	padding: 0px;
}

/* ============================================
   PANEL BASE STYLES
============================================ */
.parallax-slider .panel {
	position: relative;
	overflow: hidden;
	flex: 0.125;
	height: 80vh;
	min-height: 80vh;
	min-width: 60px;
	margin: 10px;
	border-radius: 40px;
	cursor: pointer;
	color: #fff;
	background: #1a1a2e;
	background-color: #0a0a1a;
	transition: flex 1s cubic-bezier(0.25, 1, 0.5, 1);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-size: cover;
	background-repeat: no-repeat;
}

/* Background image layer */
.parallax-slider .panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
	will-change: auto;
}

/* Dark overlay */
.parallax-slider .panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25));
	z-index: 2;
}

.parallax-slider .panel.active {
	flex: 2;
}

/* ============================================
   PARTICLES LAYER
============================================ */
.parallax-slider .panel-particles {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	filter: blur(0.5px);
	animation: floatParticle linear infinite;
}

.particle::after {
	content: "";
	position: absolute;
	inset: -6px;
	background: radial-gradient(circle, rgba(255, 255, 255, .4), transparent);
}

.slider-home-heading  h3 {
	color:#fff;
}

@keyframes floatParticle {
	from {
		transform: translateY(100vh) translateX(0);
		opacity: 0;
	}

	20% {
		opacity: 1;
	}

	to {
		transform: translateY(-20vh) translateX(var(--x));
		opacity: 0;
	}
}

/* ============================================
   CONTENT STYLES
============================================ */
.parallax-slider .panel-content {
	position: relative;
	z-index: 3;
	max-width: 700px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	opacity: 0;
	transform: translateY(40px);
	filter: blur(6px);
	transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
	will-change: transform, opacity;
}

/* Force panel-content to bottom */
.parallax-slider .panel-content,
.parallax-slider .panel-content.slide-up {
	position: absolute !important;
	top: auto !important;
	bottom: 40px !important;
	left: 50px !important;
	right: 50px !important;
	margin: 0 !important;
	transform: translateY(40px) !important;
}

.parallax-slider .panel.active .panel-content {
	opacity: 1;
	transform: translateY(0) !important;
	filter: blur(0);
	transition-delay: 0.45s;
}

/* Hide inactive panel content from layout calculations */
.parallax-slider .panel:not(.active) .panel-content {
	visibility: hidden;
}

/* Alternative content positioning */
.panel-content {
	max-width: 520px;
	margin-left: 80px;
	color: #fff;
}

/* ============================================
   SLIDER BUTTON STYLES
============================================ */
.parallax-slider .slider-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 34px;
	border-radius: 50px;
	background: linear-gradient(135deg, #021333, #042a66);
	color: #ffffff;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.3px;
	text-decoration: none;
	box-shadow: 0 10px 25px rgba(2, 19, 51, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
	transition: all 0.35s ease;
	overflow: hidden;
}

/* Arrow animation */
.parallax-slider .slider-btn span {
	display: inline-block;
	transition: transform 0.35s ease;
}

.parallax-slider .slider-btn:hover span {
	transform: translateX(6px);
}

/* Hover effect */
.parallax-slider .slider-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(2, 19, 51, 0.65), 0 0 30px rgba(4, 42, 102, 0.6);
}

/* Fallback button style */
.slider-btn {
	display: inline-block;
	background: #E01A22;
	color: white;
	text-decoration: none;
	padding: 12px 30px;
	border-radius: 40px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.slider-btn:hover {
	background: #16469D;
	transform: scale(1.05);
}

.slider-btn span {
	margin-left: 8px;
}

/* Dots Container */
.dots-container {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 20;
	padding: 10px;
	border-radius: 30px;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(5px);
}

.dot {
	height: 10px;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	padding: 0;
	background-color: rgba(255, 255, 255, 0.5);
	width: 10px;
}

.dot.active {
	background-color: #667eea;
	width: 24px;
}

/* ============================================
   ABOUT US SECTION
============================================ */
.about-style1 {
	position: relative;
	display: block;
	background: #ecf0f0;
	padding: 60px 0 60px;
	z-index: 10;
}

.about-style1__content {
	position: relative;
	display: block;
	padding-right: 20px;
}

.about-style1__content .sec-title {
	padding-bottom: 30px;
}

.about-style1__content-text-box {
	position: relative;
	display: block;
}

.about-style1__content-text-box ul {
	position: relative;
	display: block;
	overflow: hidden;
	padding-top: 30px;
	padding-bottom: 45px;
}

.about-style1__content-text-box ul li {
	position: relative;
	display: block;
	padding-left: 35px;
	color: #2a2a2a;
	font-size: 20px;
	font-family: var(--thm-font-3);
	font-weight: 700;
}

.about-style1__content-text-box ul li+li {
	margin-top: 13px;
}

.about-style1__content-text-box ul li .icon {
	position: absolute;
	top: 3px;
	left: 1px;
	color: var(--thm-base);
	font-size: 20px;
	line-height: 0;
}

.about-style1__content-text-box ul li .icon span {
	font-weight: 700;
}

.about-style1__img {
	position: relative;
	display: block;
	padding-top: 30px;
	padding-left: 3px;
}

.about-style1__img img {
	border-radius: 8px;
}

.about-style1__img ul.row {
	--bs-gutter-x: 15px;
}

.about-style1__img ul.row li:last-child {
	position: relative;
	top: -30px;
}

.about-style1__img .single-box {
	position: relative;
	display: block;
	overflow: hidden;
}

.about-style1__img .single-box img {
	width: 100%;
	transform: scale3d(1, 1, 1);
	transition: transform 1s ease-in-out;
}

/* ============================================
   ICON FONT STYLES
============================================ */
.about-style1__content [class^="icon-"],
.about-style1__content [class*=" icon-"] {
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.case-studies-style1 [class^="icon-"],
.case-studies-style1 [class*=" icon-"] {
	font-family: 'icomoon' !important;
}

/* Stagger List & Button Base Styles */
.stagger-list li {
	font-size: 0.95rem;
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
}

.stagger-list .icon {
	margin-right: 10px;
	flex-shrink: 0;
}

.btn-one {
	display: inline-block;
	padding: 10px 24px;
	font-size: 0.9rem;
}

/* ============================================
   SOLIDPRO-3D MAIN SECTION
============================================ */
.why-solid-pro .section-tag {
	font-size: 20px !important;
}

.solidpro-3d {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
	color: #ffffff;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background:
		radial-gradient(900px 520px at 18% 22%, rgb(23 71 158), transparent 60%),
		radial-gradient(500px 260px at 62% 78%, rgb(23 71 158), transparent 60%),
		radial-gradient(700px 400px at 85% 28%, rgba(30, 75, 184, 0.25), transparent 65%),
		linear-gradient(135deg, #050b1d 0%, #0b1533 45%, #050b1d 100%);
}

.solidpro-3d::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		radial-gradient(circle, rgba(30, 75, 184, 0.35) 1px, transparent 1.5px),
		radial-gradient(1200px 700px at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.6) 100%);
	background-size:
		64px 64px,
		64px 64px,
		22px 22px,
		cover;
	background-position:
		center,
		center,
		12px 12px,
		center;
	opacity: 0.55;
}

#threejs-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.35;
	pointer-events: none;
}

.solidpro-3d .container {
	position: relative;
	z-index: 2;
}

.content-wrapper {
	position: relative;
	padding-right: 40px;
}

.section-tag {
	display: inline-block;
	background: linear-gradient(90deg, #00d4ff, #0088ff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 2px;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.lead {
	font-size: 1rem !important;
	font-weight: 300;
}

.text-gradient {
	background: linear-gradient(90deg, #ff4757, #16469D);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
	position: relative;
}

.floating-stat {
	background: rgba(0, 212, 255, 0.1);
	border: 1px solid rgba(0, 212, 255, 0.3);
	border-radius: 15px;
	padding: 20px;
	margin: 30px 0;
	backdrop-filter: blur(10px);
	animation: float 3s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.stat-number {
	font-size: 3rem;
	font-weight: 900;
	background: linear-gradient(90deg, #fff, #fff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
}

.home-page .stat-number {
	background: linear-gradient(90deg, #fff, #fff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stat-text {
	font-size: 0.9rem;
	color: #a0aec0;
	margin-top: 5px;
}

.btn-group-3d {
	display: flex;
	gap: 15px;
	margin-top: 40px;
}

.btn-3d-primary,
.btn-3d-secondary {
	padding: 15px 30px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.btn-3d-primary {
	background: linear-gradient(135deg, #16469D, #16469D);
	color: white;
	border: none;
	box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-3d-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.7s;
}

.btn-3d-primary:hover::before {
	left: 100%;
}

.btn-3d-secondary {
	background: transparent;
	color: #00d4ff;
	border: 2px solid rgba(0, 212, 255, 0.3);
}

.btn-3d-primary:hover,
.btn-3d-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

/* ============================================
   SVC SECTION
============================================ */
.svc-image-frame img {
	transition: opacity 0.3s ease;
}

.svc-image-frame img.fade-out {
	opacity: 0.5;
}

.svc-section {
	position: relative;
	overflow: hidden;
	padding: 80px 0;
	background: #ecf0f0;
	min-height: 350px;
}

.svc-section>*:not(.particle-canvas) {
	position: relative;
	z-index: 2;
}

.particle-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	background: #ecf0f0;
}

/* Fix for unclickable accordion items */
#industries .particle-canvas {
	pointer-events: none !important;
	z-index: 1 !important;
}

#industries .svc-bg-logo {
	pointer-events: none !important;
	z-index: 2 !important;
}

#industries .svc-item-header {
	cursor: pointer !important;
	pointer-events: auto !important;
	position: relative !important;
}

#industries .svc-item {
	pointer-events: auto !important;
}

#industries .animate-on-scroll {
	pointer-events: auto !important;
}

/* ============================================
   SERVICE STYLE 5
============================================ */
.service-style5 {
	position: relative;
	display: block;
	background-color: #f4f4f4;
	padding: 30px 0 30px;
	z-index: 10;
}

.service-style5__top {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-bottom: 10px;
}

.service-style5__top .sec-title {
	padding-bottom: 0;
}

.single-service-style5 {
	position: relative;
	display: block;
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.single-service-style5:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.single-service-style5 .icon-box span {
	color: #16469D;
	font-size: 65px;
	line-height: 65px;
}

.icon-box img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 20px;
}

.single-service-style5 .title-box {
	position: relative;
	display: block;
	margin-top: 10px;
}

.single-service-style5 .title-box h3 {
	font-size: 28px;
	line-height: 34px;
}

.title-box h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

.title-box h3 span {
	color: #e31b23;
}

.single-service-style5 .title-box h3 a {
	color: var(--thm-black);
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.single-service-style5 .title-box h3 a:hover {
	color: var(--thm-base);
}

.service-desc {
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
}

.btn-box a:hover {
	color: #e31b23;
	background-color: #00346a;
}

.services-slider-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	padding: 20px 0;
}

.services-slider {
	display: flex;
	transition: transform 0.5s ease-in-out;
	gap: 30px;
}

.slider-slide {
	flex: 0 0 calc(33.333% - 20px);
	min-width: 0;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.slider-slide.active {
	opacity: 1;
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #333;
	transition: all 0.3s ease;
	z-index: 10;
}

.slider-arrow:hover {
	background: #e31b23;
	color: #fff;
	border-color: #e31b23;
}

.slider-arrow.prev {
	left: 10px;
}

.slider-arrow.next {
	right: 10px;
}

/* ============================================
   VISION STYLE 1
=========================================== */
.vision-style1 {
	position: relative;
	display: block;
	z-index: 10;
}


.mobile-view-metrics  {
	display:none;
}

.vision-style1__bg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: calc((100% - 370px) / 2);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top right;
	z-index: 1;
}

.vision-style1__bg-2 {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: calc((100% + 370px) / 2);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top right;
	background-color: #021333;
	background-blend-mode: overlay;
}

.vision-style1__bg-2::before {
	position: absolute;
	content: '';
	top: 0;
	right: 0px;
	bottom: 0;
	left: 0;
	background-color: #00346a;
	opacity: 0.85;
}

.vision-style1__content {
	position: relative;
	display: block;
	padding-left: 0px;
	margin-top:50px;
}

.vision-style1__content-inner {
	position: relative;
	display: flex;
	align-items: flex-start;
	padding-top: 0px;
	padding-bottom: 0px;
}

.fact-counter-box-style2 {
	position: relative;
	display: block;
	width: 400px;
	border-right: 1px solid rgb(255, 255, 255, 0.35);
	padding-top: 18px;
	padding-bottom: 18px;
	padding-right: 5px !important;
}

.fact-counter-box-style2 ul li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 150px;
}

.fact-counter-box-style2 ul li+li {
	margin-top: 25px;
}

.fact-counter-box-style2 ul li .counting {
	position: relative;
	display: flex;
	align-items: center;
	color: #ffffff;
	font-size: 40px;
	line-height: 1.2em;
}

.fact-counter-box-style2 ul li .counting h2 {
	color: #ffffff;
	font-size: 45px;
	line-height: 1.2em;
	font-weight: 900;
}

.fact-counter-box-style2 ul li .counting span.k {
	position: relative;
	display: inline-block;
	line-height: 40px;
	font-weight: 900;
	font-size: 40px;
	top: -1px;
	margin-left: 3px;
}

.fact-counter-box-style2 ul li h3 {
	color: #ffffff;
	font-size: 12px;
	line-height: 25px;
	font-weight: 500;
	text-align: center;
}

.vision-style1__main-content {
	position: relative;
	display: block;
	padding-left: 25px;
	margin-right: -50px;
	flex: 1;
}

.vision-style1__main-content .sec-title {
	padding-bottom: 31px;
}

.vision-style1__main-content .sec-title .sub-title .border-line {
	background-color: #ffffff;
}

.vision-style1__main-content .sec-title .sub-title h4 {
	color: #ffffff;
}

.vision-style1__main-content .sec-title h2 {
	color: #ffffff;
}

.vision-style1__main-content .top-text {
	position: relative;
	display: block;
	margin-bottom: 34px;
}

.vision-style1__main-content .top-text p {
	color: #ffffff;
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
}

.vision-style1__main-content .bottom-text p {
	color: #ffffff;
}

.mobile-metrics-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.metric-item {
	text-align: center;
	padding: 1.5rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.metric-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
}

.metric-item .counting {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 0.75rem;
}

.metric-item .counting h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1;
}

.metric-item .counting .k {
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	margin-left: 0.25rem;
}

.metric-item h3 {
	font-size: 0.875rem;
	font-weight: 500;
	margin: 0;
	color: #fff;
	line-height: 1.3;
}

.text-center {
	text-align: center;
}

/* ============================================
   SHOWCASE SECTION
============================================ */
.showcase-section {
	position: relative;
	overflow: hidden;
	padding: 4rem 0;
	background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.showcase-wrapper {
	display: flex;
	gap: 3rem;
	align-items: stretch;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.showcase-content {
	flex: 1.5;
	min-width: 280px;
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(0px);
	border-radius: 2rem;
	padding: 2.5rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.content-inner {
	transition: opacity 0.2s ease;
}

.fade-out {
	opacity: 0;
}

.fade-in {
	opacity: 1;
}

.cap-icon {
	font-size: 3rem;
	color: #16469D;
	margin-bottom: 1.5rem;
	display: inline-block;
	background: rgba(37, 99, 235, 0.1);
	padding: 1rem;
	border-radius: 1rem;
}

.showcase-content h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #0f172a;
}

.image-slideshow {
	margin: 1.5rem 0;
	border-radius: 1rem;
	overflow: hidden;
}

.slideshow-container {
	position: relative;
	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.slideshow-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.slideshow-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	color: #16469D;
	font-size: 1rem;
	backdrop-filter: blur(4px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slideshow-nav:hover {
	background: #16469D;
	color: white;
	transform: translateY(-50%) scale(1.05);
}

.slideshow-nav.prev {
	left: 1rem;
}

.slideshow-nav.next {
	right: 1rem;
}

.slideshow-dots {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	padding: 0.5rem;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 2rem;
	backdrop-filter: blur(4px);
}

.slideshow-dots .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.slideshow-dots .dot.active {
	background: #16469D;
	width: 24px;
	border-radius: 4px;
}

.points-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

.point-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.95rem;
	color: #1e293b;
}

.point-item i {
	color: #16469D;
	font-size: 1rem;
	margin-top: 0.2rem;
}

.showcase-menu {
	flex: 1;
	min-width: 260px;
	border-radius: 1.5rem;
	padding: 1.5rem;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
	height: fit-content;
	background: #16469D;
	width: 100%;
}

.showcase-menu h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #fff;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.category-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.category-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.9rem 1rem;
	border-radius: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #eef2ff;
}

.category-item.active {
	background: linear-gradient(90deg, #eff6ff, #ffffff);
	border-left: 3px solid #16469D;
}

.category-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f1f5f9;
	border-radius: 12px;
	font-size: 1.2rem;
	color: #16469D;
}

.category-info {
	flex: 1;
}

.category-title {
	display: block;
	font-weight: 500;
	color: #0f172a;
	font-size: 0.95rem;
	margin-bottom: 0.2rem;
}

.hover-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #16469D;
	transition: width 0.3s ease;
}

.category-item.active .hover-line,
.category-item:hover .hover-line {
	width: 100%;
}

.mobile-inline-accordion {
	display: none;
}

/* ============================================
   TECH GRADIENT SECTION
============================================ */
.tech-gradient-section {
	position: relative;
	padding: 40px 0;
	background: linear-gradient(135deg, #f4f7fb 0%, #e9eef6 100%);
	overflow: hidden;
}

.tech-gradient-section.light-version {
	position: relative;
	background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
	padding: 60px 0;
	overflow: hidden;
	border-radius: 30px;
	margin: 40px 0;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.execution-process-section.light-version {
	position: relative;
	background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
	padding: 60px 0;
	overflow: hidden;
	border-radius: 30px;
	margin: 40px 0;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.insight-content {
	padding: 25px;
}

/* ============================================
   CASE STUDIES STYLE 1
=========================================== */
.case-studies-style1 {
	position: relative;
	display: block;
	background-color: #fff;
	padding: 120px 0 120px;
	z-index: 10;
	overflow: hidden;
}

.case-studies-style1__title {
	position: relative;
	display: block;
}

.case-studies-style1__title .sec-title.withtext {
	padding-bottom: 0;
}

.case-studies-style1__title .sec-title h2 {
	color: #16469D;
}

.single-case-studies-style1 {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 8px;
}

.single-case-studies-style1 .img-box {
	position: relative;
	display: block;
	overflow: hidden;
	background-color: var(--thm-base);
	border-radius: 8px;
	transition: .3s ease-in-out;
}

.single-case-studies-style1 .img-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0.70;
	background-color: #00a2ff;
	transition: transform 0.4s ease;
	transform-origin: bottom right;
	transform: scale(1, 0);
	z-index: 1;
}

.single-case-studies-style1:hover .img-box::before {
	transform: scale(1, 1);
	transform-origin: top center;
}

.single-case-studies-style1 .img-box img {
	width: 100%;
}

.case-studies-style1 .case-studies-title {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.7);
	padding: 15px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.case-studies-style1 .case-studies-title h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.4;
}

.case-studies-style1 .case-studies-title h3 a {
	color: #ffffff;
	text-decoration: none;
}

/* ============================================
   CAREERS MODERN
=========================================== */
.careers-modern {
	padding: 100px 0;
	background: linear-gradient(90deg, #021333 0%, #06204f 100%);
	font-family: "Inter", sans-serif;
	color: #ffffff;
}

.careers-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
	gap: 60px;
	align-items: center;
	width: 90%;
	margin: auto;
}

.section-label {
	color: #4db6ff !important;
	font-size: 14px;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
}

.careers-content h2 {
	margin: 10px 0 15px;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff !important;
}

.careers-content p {
	max-width: 450px;
	font-size: 18px;
	opacity: 0.85;
	color: #e5e7eb !important;
}

.careers-btn {
	margin-top: 25px;
	display: inline-block;
	padding: 14px 28px;
	color: #ffffff;
	border: 1px solid #4db6ff;
	border-radius: 30px;
	text-decoration: none;
	transition: 0.3s;
	font-weight: 600;
}

.careers-btn:hover {
	background: #4db6ff;
	color: #021333;
}

.careers-jobs {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.job-card {
	background: rgba(255, 255, 255, 0.08);
	padding: 22px 28px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 0.3s;
}

.job-card h3 {
	margin: 0;
	font-size: 20px;
	color: #fff;
}

.job-card .location {
	font-size: 14px;
	opacity: 0.7;
}

.apply-arrow {
	color: #4db6ff;
	font-size: 22px;
	text-decoration: none;
	transition: 0.3s;
}

.careers-modern .section-title {
	text-align: left;
}

/* ============================================
   COMPACT SP-CONTACT SECTION
=========================================== */
.sp-contact-section {
	background: white;
	padding: 50px 0;
	position: relative;
	overflow: hidden;
}

.sp-contact-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	z-index: 1;
}

.sp-contact-container {
	position: relative;
	z-index: 2;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 15px;
}

.sp-contact-header {
	max-width: 650px;
	margin: 0 auto 25px;
	text-align: center;
}

.sp-contact-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #16469D;
	letter-spacing: -0.5px;
}

.sp-contact-desc {
	font-size: 15px;
	color: #455a64;
	line-height: 1.5;
	max-width: 550px;
	margin: 0 auto;
}

.sp-contact-formWrap {
	position: relative;
	max-width: 850px;
	margin: 0 auto;
	border-radius: 6px;
	padding: 25px;
	background: white;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.15);
	border: 1px solid #e0e0e0;
}

.sp-contact-formWrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #16469D, #3949ab, #16469D);
	border-radius: 6px 6px 0 0;
}

.sp-form-row {
	display: block;
	gap: 15px;
	margin-bottom: 15px;
}

.sp-field {
	flex: 1;
	position: relative;
}

.sp-field label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 4px;
	color: #37474f;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.sp-field input,
.sp-field select,
.sp-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #bdbdbd;
	border-radius: 4px;
	font-size: 13px;
	background: #fafafa !important;
	font-family: inherit;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

.sp-field textarea {
	min-height: 80px;
	resize: vertical;
}

.sp-field input:focus,
.sp-field select:focus,
.sp-field textarea:focus {
	outline: none;
	border-color: #16469D;
	background: white;
	box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.1);
}

.sp-contact-btn {
	width: 100%;
	padding: 12px 16px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 13px;
	color: white;
	background: #16469D;
	transition: all 0.2s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.sp-contact-btn:hover {
	background: #283593;
	transform: translateY(-1px);
	box-shadow: 0 3px 8px rgba(26, 35, 126, 0.25);
}

.sp-contact-note {
	display: block;
	margin-top: 4px;
	font-size: 10px;
	color: #757575;
	font-style: italic;
}

.sp-consent-row {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #37474f;
	font-weight: 500;
}

.sp-consent-row input {
	width: 14px;
	height: 14px;
}

/* ============================================
   ANIMATED BACKGROUND PATTERN
============================================ */
.sp-pattern-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	opacity: 0.15;
}

.sp-pattern-grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(26, 35, 126, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(26, 35, 126, 0.08) 1px, transparent 1px);
	background-size: 40px 40px;
	animation: sp-gridMove 20s linear infinite;
}

@keyframes sp-gridMove {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 40px 40px;
	}
}

.sp-pattern-dot {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(26, 35, 126, 0.15) 0%, transparent 70%);
	animation: sp-dotFloat 15s infinite ease-in-out;
}

.p1 {
	width: 35px;
	height: 35px;
	top: 15%;
	left: 10%;
	animation-delay: 0s;
}

.p2 {
	width: 25px;
	height: 25px;
	top: 60%;
	right: 15%;
	animation-delay: 2s;
	animation-duration: 18s;
}

.p3 {
	width: 30px;
	height: 30px;
	bottom: 25%;
	left: 20%;
	animation-delay: 4s;
	animation-duration: 20s;
}

.p4 {
	width: 20px;
	height: 20px;
	top: 40%;
	right: 25%;
	animation-delay: 6s;
	animation-duration: 16s;
}

.p5 {
	width: 28px;
	height: 28px;
	bottom: 40%;
	left: 5%;
	animation-delay: 8s;
	animation-duration: 22s;
}

@keyframes sp-dotFloat {
	0% {
		transform: translate(0, 0) scale(1);
		opacity: 0.3;
	}

	25% {
		transform: translate(15px, -15px) scale(1.2);
		opacity: 0.5;
	}

	50% {
		transform: translate(-10px, 10px) scale(0.9);
		opacity: 0.3;
	}

	75% {
		transform: translate(10px, -10px) scale(1.1);
		opacity: 0.4;
	}

	100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.3;
	}
}

/* ============================================
   RESPONSIVE STYLES (Ordered from largest to smallest)
============================================ */

/* Desktop (992px - 1199px) */
@media (min-width: 1200px) {

	.vision-style1__content {
		
		padding-left: 540px;

	}
}



@media (min-width: 992px) and (max-width: 1199px) {
	.parallax-slider-wrap {
		height: 70vh;
	}

	.panel-content h3 {
		font-size: 2.1rem;
	}

	.panel-content p {
		font-size: 1.3rem;
	}

	.slider-btn {
		padding: 0.8rem 2rem;
		font-size: 1rem;
	}

	.about-style1 {
		padding: 80px 0;
	}

	.about-style1__content {
		padding-right: 0px;
		margin-bottom: 0;
	}

	.about-style1 .sec-title h2 {
		font-size: 2.5rem;
	}

	.about-style1__img {
		padding-top: 80px;
		padding-left: 0px;
	}

	.vision-style1__content {
		padding-left: 420px;
	}

	.parallax-slider .panel {
	
		text-align: left;
	}


	
}

/* Tablet Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
	.parallax-slider-wrap {
		height: 65vh;
	}

	.metric-item {
	padding: 30px;
	background: transparent;
	border-radius: 10px;
	box-shadow: var(--shadow);
	opacity: 0;
	transform: translateY(30px);
}


	.parallax-slider {
		width: 95vw;
	}

	.parallax-slider .panel {
		margin: 8px;
		border-radius: 30px;
		text-align: left;
	}

	.parallax-slider .panel-content {
		bottom: 30px;
		left: 30px;
		right: 30px;
		max-width: 500px;
	}

	.parallax-slider .panel h3 {
		font-size: 1.5rem;
	}

	.parallax-slider .panel p {
		font-size: 0.9rem;
	}

	.parallax-slider .slider-btn {
		padding: 12px 28px;
		font-size: 14px;
	}

	.parallax-slider .panel:nth-of-type(5) {
		display: none;
	}

	.panel-content h3 {
		font-size: 2rem;
	}

	.panel-content p {
		font-size: 1.2rem;
	}

	.slider-btn {
		padding: 0.7rem 1.8rem;
		font-size: 1rem;
	}

	.about-style1 {
		padding: 60px 0;
	}

	.about-style1__content {
		padding-right: 20px;
	}

	.about-style1 .sec-title h2 {
		font-size: 2.2rem;
	}

	.about-style1__img {
		padding-top: 80px;
		padding-left: 0px;
	}

	.vision-style1__bg {
		top: 0px;
		right: 0;
		bottom: auto;
		width: 100%;
		max-width: 960px;
		margin: 0 auto;
		height: 700px;
	}

	.vision-style1__bg-2 {
		width: 100%;
	}

	.vision-style1__content {
		max-width: 100%;
		width: 100%;
		padding-top: 0px;
		padding-left: 0px;
	}

	.fact-counter-box-style2 {
		border-right: 0;
		padding-top: 0px;
		padding-bottom: 0px;
	}

	.vision-style1__main-content {
		padding-left: 60px;
		margin-right: 0px;
	}

	.case-studies-style1__title .sec-title.withtext {
		padding-bottom: 150px;
	}

	.metric-item {
		background: transparent;
	}
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
	.mobile-view-metrics  {
	display:block;
}
	.about-style1__content h2 {
		font-size: 1.8rem;
	}

	.about-style1__content p {
		font-size: 0.95rem;
		line-height: 1.5;
	}

	.stagger-list li {
		font-size: 0.9rem;
		margin-bottom: 0.8rem;
	}

	.btn-box .btn-one {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	.about-style1__img {
		margin-top: 2rem;
	}

	.about-style1__img_desktop {
		display:none;
	}

	.about-style1__img_mobile {
		display:block;
	}

	.desktop-view {
		display: none;
	}
	.careers-modern .section-title {
		text-align: center;
	}
}

/* Tablet (641px - 767px) */
@media (min-width: 641px) and (max-width: 767px) {
	.parallax-slider {
		width: 100vw;
	}

	.parallax-slider-wrap {
		height: 60vh;
	}

	.parallax-slider .panel {
		flex: 0.10;
		height: 80vh;
		margin: 6px;
	}

	.parallax-slider .panel-content {
		left: 0px !important;
		right: 0px !important;
		bottom: 0px !important;
	}

	.panel-content {
		padding: 1.5rem;
	}

	.panel-content h3 {
		font-size: 1.5rem;
	}

	.panel-content p {
		font-size: 1rem;
	}

	.parallax-slider .slider-btn {
		padding: 10px 20px !important;
		font-size: 12px !important;
	}

	.slider-btn {
		padding: 0.6rem 1.5rem;
		font-size: 0.9rem;
	}

	.parallax-slider .panel:nth-of-type(4),
	.parallax-slider .panel:nth-of-type(5) {
		display: none;
	}
}

/* Mobile Landscape (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
	.parallax-slider {
		width: 100vw;
	}

	.parallax-slider .panel {
		flex: 0.1;
		height: 70vh;
		margin: 6px;
		border-radius: 25px;
	}

	.parallax-slider .panel.active {
		flex: 1.5;
	}

	.parallax-slider .panel-content {
		bottom: 20px !important;
		left: 20px !important;
		right: 20px !important;
		max-width: 90%;
	}

	.parallax-slider .panel h3 {
		font-size: 1.2rem;
		margin-bottom: 0.3rem;
	}

	.parallax-slider .panel p {
		font-size: 0.85rem;
		line-height: 1.4;
	}

	.parallax-slider .slider-btn {
		padding: 10px 20px !important;
		font-size: 12px !important;
		gap: 6px;
	}

	.parallax-slider .panel:nth-of-type(4),
	.parallax-slider .panel:nth-of-type(5) {
		display: none;
	}

	.about-style1 {
		padding: 40px 0;
	}

	.about-style1__content {
		padding-right: 0px;
	}

	.about-style1 .sec-title h2 {
		font-size: 1.8rem;
	}

	.about-style1__content-text-box p {
		font-size: 0.95rem;
	}

	.stagger-list li {
		font-size: 0.95rem;
	}

	.btn-one {
		padding: 10px 28px;
		font-size: 0.95rem;
	}

	.svc-section {
		padding: 56px 0;
	}

	.svc-title {
		font-size: 26px;
	}
}

/* Mobile Portrait (max-width: 767px) */
@media (max-width: 767px) {
	.about-style1__content {
		margin-bottom: 50px;
		padding-right: 0px;
	}

	.about-style1__content h2 {
		font-size: 1.5rem;
		line-height: 1.3;
	}

	.sub-title h4 {
		font-size: 0.9rem;
	}

	.about-style1__content p {
		font-size: 0.85rem;
		line-height: 1.5;
	}

	.stagger-list li {
		font-size: 0.8rem;
		margin-bottom: 0.6rem;
	}

	.stagger-list li .icon {
		margin-right: 0.5rem;
	}

	.btn-box .btn-one {
		padding: 0.6rem 1.2rem;
		font-size: 0.8rem;
	}

	.about-style1__img {
		margin-top: 1.5rem;
		padding-top: 50px;
		padding-left: 0px;
	}

	.container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.about-style1__img ul.row li:last-child {
		margin-top: 30px;
		top: 0px;
	}

	.solidpro-3d {
		padding: 60px 0;
	}

	.vision-style1__bg {
		top: 0px;
		right: 0;
		bottom: auto;
		width: 100%;
		max-width: 960px;
		margin: 0 auto;
		height: 500px;
	}

	.vision-style1__bg-2 {
		width: 100%;
	}

	.vision-style1__content {
		max-width: 100%;
		width: 100%;
		padding-top: 0px;
		padding-left: 0px;
	}

	.vision-style1__content-inner {
		margin-top: 0;
		display: block;
		padding-bottom: 50px;
	}

	.fact-counter-box-style2 {
		border-right: 0;
		padding-top: 0px;
		padding-bottom: 0px;
	}

	.vision-style1__main-content {
		padding-top: 60px;
		padding-left: 0px;
		margin-right: 0px;
	}

	.fact-counter-box-style2 ul li+li {
		margin-top: 30px;
	}

	.fact-counter-box-style2 ul li {
		align-items: center;
	}

	.case-studies-style1 {
		padding: 20px 0 20px;
	}

	.case-studies-style1__title {
		text-align: center;
		margin-bottom: 2rem;
	}

	.case-studies-style1 .sec-title h2 {
		font-size: 1.75rem;
	}

	.case-studies-style1__title .sec-title.withtext {
		padding-bottom: 30px;
		padding-top: 30px;
	}

	.single-case-studies-style1 {
		margin-bottom: 1rem;
	}

	.case-studies-title h3 {
		font-size: 1rem;
		margin-top: 0.75rem;
	}

	.careers-modern {
		padding: 2rem 1rem;
	}

	.careers-container {
		flex-direction: column;
		gap: 2rem;
		display: block;
		width: 90%;
	}

	.careers-content {
		text-align: center;
		padding: 0;
	}

	.careers-jobs {
		margin-top: 50px;
	}

	.job-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		padding: 1rem;
	}

	.job-card h3 {
		font-size: 1.125rem;
		margin-bottom: 0.25rem;
	}


  .fact-counter-box-style2 ul li {
	min-height: 50px;
}

.hero-inner .container {
	padding: 0px 30px;
}

.sp-consent-row {
width:max-content;
}

.svc-right-mobile {
	display:none!important
}

.careers-content h2 {
	font-size: 20px;

}



}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
	.parallax-slider {
		width: 100vw;
	}

	.parallax-slider-wrap {
		height: 50vh;
	}

	.parallax-slider .panel {
		flex: 0.05;
		height: 60vh;
		margin: 5px;
		border-radius: 20px;
	}

	.parallax-slider .panel.active {
		flex: 1.2;
	}

	.parallax-slider .panel-content {
		bottom: 15px !important;
		left: 15px !important;
		right: 15px !important;
		max-width: 95%;
		gap: 8px;
	}

	.parallax-slider .panel h3 {
		font-size: 1rem;
		margin-bottom: 0.2rem;
	}

	.parallax-slider .panel p {
		font-size: 0.75rem;
		line-height: 1.3;
		margin-bottom: 5px;
	}

	.parallax-slider .slider-btn {
		padding: 8px 16px !important;
		font-size: 11px !important;
		gap: 5px;
	}

	.parallax-slider .panel:nth-of-type(4),
	.parallax-slider .panel:nth-of-type(5) {
		display: none;
	}

	.panel-content {
		padding: 1rem;
	}

	.panel-content h3 {
		font-size: 16px;
		margin-bottom: 0rem;
	}

	.panel-content p {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}

	.parallax-slider .panel-content,
	.parallax-slider .panel-content.slide-up {
		position: relative !important;
		top: auto !important;
		bottom: 0px !important;
		left: 0px !important;
		right: 50px !important;
		margin: 0 !important;
		transform: translateY(40px) !important;
	}

	.parallax-slider .slider-btn {
		padding: 5px 20px;
	}

	.slider-btn {
		padding: 0.4rem 1rem;
		font-size: 0.8rem;
	}

	.about-style1__content {
		margin-bottom: 0px;
	}

	.about-style1 {
		padding: 30px 10px;
	}

	.about-style1 .sec-title h2 {
		font-size: 1.5rem;
		margin-bottom: 30px;
	}

	.about-style1 .sec-title .sub-title h4 {
		font-size: 0.9rem;
	}

	.about-style1__content-text-box p {
		font-size: 0.85rem;
	}

	.about-style1__content-text-box ul li {
		font-size: 16px;
		padding-left: 30px;
	}

	.stagger-list li {
		font-size: 0.85rem;
	}

	.btn-one {
		padding: 8px 24px;
		font-size: 0.85rem;
	}

	#smooth-wrapper .visual-wrapper {
		display: none !important;
	}

	.solidpro-3d {
		padding: 60px 0;
	}

	.display-4 {
		font-size: 2.5rem;
	}

	.svc-section {
		padding: 56px 0;
	}

	.slider-slide {
		flex: 0 0 100%;
	}

	.mobile-metrics-grid {
		gap: 1rem;
	}

	.metric-item {
		padding: 1rem 0.75rem;
	}

	.metric-item .counting h2 {
		font-size: 1.5rem;
	}

	.metric-item .counting .k {
		font-size: 1.25rem;
	}

	.metric-item h3 {
		font-size: 0.75rem !important;
	}

	.vision-style1 {
		padding: 30px 0;
	}

	.vision-style1__bg {
		width: 100%;
		opacity: 0.3;
	}

	.vision-style1__bg-2 {
		width: 100%;
	}

	.vision-style1__content {
		padding-left: 0 !important;
	}

	.vision-style1__content-inner {
		flex-direction: column;
		gap: 20px;
		align-items: center !important;
	}

	.vision-style1__main-content {
		padding-left: 0;
		margin-right: 0;
		text-align: center;
		width: 100%;
	}

	.vision-style1__main-content .sec-title h2 {
		font-size: 24px;
		line-height: 1.3;
		color: #fff;
	}

	.fact-counter-box-style2 {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		padding: 20px 15px;
		margin: 0;
	}

	.fact-counter-box-style2 ul li .counting h2 {
		font-size: 32px;
	}

	.vision-style1__main-content .top-text p {
		font-size: 16px;
		line-height: 24px;
		padding: 0 15px;
	}

	.showcase-content {
		padding: 1.5rem;
	}

	.showcase-content h3 {
		font-size: 1.6rem;
	}

	.slideshow-image {
		height: 200px;
	}

	.careers-modern {
		padding: 50px 0;
	}

	.careers-container {
		grid-template-columns: 1fr;
		gap: 35px;
		padding: 0 15px;
		display: grid;
	}

	.careers-content {
		padding-right: 0;
		text-align: center;
	}

	.section-label {
		font-size: 11px;
		letter-spacing: 1.5px;
		margin-bottom: 12px;
	}

	.section-title {
		font-size: 24px;
		line-height: 1.35;
		margin-bottom: 12px;
		padding: 0 5px;
	}

	.section-description {
		font-size: 13px;
		line-height: 1.5;
		margin-bottom: 22px;
		padding: 0 8px;
	}

	.careers-btn {
		padding: 10px 24px;
		font-size: 13px;
		width: auto;
		display: inline-block;
	}

	.careers-jobs {
		gap: 14px;
	}

	.job-card {
		padding: 16px 18px;
		flex-direction: column;
		text-align: center;
		gap: 12px;
		border-radius: 12px;
	}

	.job-card h3 {
		font-size: 16px;
		margin-bottom: 5px;
		line-height: 1.4;
	}

	.location {
		font-size: 11px;
		display: inline-block;
	}

	.apply-arrow {
		font-size: 22px;
		display: inline-block;
		width: auto;
	}

	.sp-contact-section {
		padding: 30px 0;
	}

	.sp-contact-formWrap {
		padding: 15px;
		border-radius: 4px;
	}

	.sp-contact-title {
		font-size: 22px;
		margin-bottom: 6px;
	}

	.sp-contact-desc {
		font-size: 13px;
	}

	.sp-contact-btn {
		padding: 10px 14px;
		font-size: 12px;
	}

	.sp-pattern-overlay {
		display: none;
	}

	.rc-anchor-normal {
    height: 74px;
    width: 250px!important;
}
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
	.parallax-slider .panel-content {
		bottom: 10px !important;
		left: 10px !important;
		right: 10px !important;
	}

	.parallax-slider .slider-btn {
		padding: 6px 12px !important;
		font-size: 10px !important;
	}

	

	.careers-container {
		gap: 30px;
		padding: 0 12px;
	}

	.section-title {
		font-size: 22px;
	}

	.section-description {
		font-size: 12px;
		padding: 0 5px;
	}

	.careers-btn {
		padding: 8px 20px;
		font-size: 12px;
	}

	.job-card {
		padding: 14px 15px;
		gap: 10px;
	}

	.job-card h3 {
		font-size: 15px;
	}

	.location {
		font-size: 10px;
	}

	.apply-arrow {
		font-size: 20px;
	}
	.rc-anchor-normal {
    height: 74px;
    width: 250px!important;
}

  .careers-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))!important;
        gap: 60px;
        align-items: center;
        width: 90%;
        margin: auto;
        }


		.sp-form-row {
   			 display: block;
	}
}

/* ============================================
   ANIMATIONS & EFFECTS
============================================ */
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.parallax-slider .panel.active .panel-content {
	animation: slideIn 0.6s ease-out 0.45s forwards;
}

.parallax-slider .panel:active {
	transform: scale(0.98);
	transition: transform 0.1s ease;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

	.parallax-slider .panel,
	.parallax-slider .panel-content,
	.parallax-slider .slider-btn {
		transition: none;
		animation: none;
	}

	.parallax-slider .panel.active .panel-content {
		animation: none;
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

/* ============================================
   UTILITY CLASSES
============================================ */
.parallax-slider .panel[data-gradient="dark"]::before {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.parallax-slider .panel[data-gradient="light"]::before {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
}


/* Metrics Section */
.metrics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	text-align: center;
	margin-top: 50px;
}

.metric-item {
	padding: 30px;
	background: transparent;
	border-radius: 10px;
	box-shadow: var(--shadow);
	opacity: 0;
	transform: translateY(30px);
}


.metric-item.animated {
	opacity: 1;
	transform: translateY(0);
}

.metric-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 10px;
}

#contact .banner-title-heading h2 {
    padding-bottom: 0px;
}

#contact .banner-title-heading h2 {
    padding-bottom: 0px;
}

.insights-area h2 {
    padding-bottom: 0px;
}

.service-style5 .banner-title-heading h2 {
   padding-bottom: 0px;
}


.view-more-jobs-btn {
    display: inline-block;
    padding: 14px 28px;
    color: #ffffff;
    border: 1px solid #4db6ff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}


.view-more-jobs-btn:hover {
    background: #4db6ff;
    color: #021333;
}

.btn-animate {
	padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
	background: linear-gradient(135deg, #16469D, #16469D);
    color: white;
    border: none;
    
}



.btn-animate:hover {
	background: linear-gradient(135deg, #e01a22, #e01a22);
	color:#fff!important;
}


.btn-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}




