:root {
  /* --- CHANGE: Updated color palette for the new blue theme --- */
  --primary-color: #5A82F9;      /* Main Accent: New Blue */
  --secondary-color: #1a253c;     /* Dark Backgrounds: Navy Blue (Works well with blue) */
  --light-bg: #F1F4FD;          /* Main Page Background: New Pale Blue */
  --text-dark: #1a253c;          /* Dark Text: Navy Blue */
  --text-light: #F1F4FD;         /* Light Text: New Pale Blue */
  --card-bg: #ffffff;            /* White for cards */
  --border-color: #d1d9e6;       /* A neutral light border */
  --accent-color: #5A82F9;       /* Legacy variable updated for compatibility */
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Clash Display', sans-serif;
}

body {
	font-family: 'Poppins', sans-serif;
	color: var(--text-dark);
	background-color: var(--light-bg);
	padding-top: 80px; /* Space for fixed navbar */
}
h2 {
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--text-dark);
}
img {
	max-width: 100%;
	height: auto;
}
.section-title {
	font-weight: 600;
	color: var(--text-dark);
}
.section-title-light {
	font-weight: 600;
	color: var(--text-light);
}
.section-subtitle {
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
}
/* --- Header --- */
.navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	background-color: var(--card-bg);
}
.navbar-brand {
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--text-dark) !important;
}
.navbar-nav .nav-link {
	font-weight: 500;
	color: var(--text-dark) !important;
	margin: 0 15px;
}
.btn-brand {
	background-color: var(--primary-color);
	color: var(--text-light);
	border-radius: 8px;
	padding: 10px 25px;
	font-weight: 500;
}
.btn-brand:hover {
	background-color: #476AD9; /* --- CHANGE: Darker shade of new blue --- */
	color: var(--text-light);
}
/* --- Split Hero Section --- */
.hero-split-section {
	display: flex;
	min-height: 100vh;
	width: 100%;
	height: 500px;
	overflow: hidden;
}
.hero-panel {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}
.panel-text {
	background-color: transparent;
	animation: slide-in-from-left 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes slide-in-from-left {
from {
transform: translateX(-100%);
}
to {
	transform: translateX(0);
}
}
.panel-text .text-content {
	max-width: 500px;
}
.panel-text .hero-subtitle {
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 1rem;
}
.panel-text .hero-title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(3.5rem, 8vw, 6rem);
	color: var(--text-dark);
	line-height: 1;
	margin-bottom: 2rem;
	font-size: 55px;
	font-weight:700;
	line-height:60px;
}
.panel-text .hero-description {
	color: #4a5568; /* A softer dark color */
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2.5rem;
}
.btn-app-store {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.75rem;
	background-color: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 50px;
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}
.btn-app-store:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	color: var(--text-dark);
}
.btn-app-store .bi {
	font-size: 1.5rem;
}
.panel-visual {
	background-color: transparent;
	overflow: hidden;
	animation: slide-in-from-right 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes slide-in-from-right {
from {
transform: translateX(100%);
}
to {
	transform: translateX(0);
}
}
.hero-image-marquee {
	height: 150%;
	width: 100%;
	display: flex;
	gap: 2rem;
}
.hero-image-marquee:hover .hero-image-track {
	animation-play-state: paused;
}
.hero-image-track {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	animation: marquee-scroll-vertical 40s linear infinite;
}
@keyframes marquee-scroll-vertical {
from {
transform: translateY(0);
}
to {
	transform: translateY(-50%);
}
}
.hero-image-track img {
	width: 280px;
	border-radius: 24px;
}
/* --- About Marquee Section --- */
.about-marquee-section {
	background-color: var(--secondary-color);
	position: relative;
	overflow: hidden;
}
.marquee-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	z-index: 1;
	transform: rotate(-15deg) scale(1.2);
}
.about-marquee-section:hover .marquee-track {
	animation-play-state: paused;
}
.marquee-track {
	display: flex;
	gap: 2rem;
	flex-shrink: 0;
	animation: marquee-scroll 40s linear infinite;
	width: fit-content;
}
.marquee-track.reverse {
	animation-direction: reverse;
}
@keyframes marquee-scroll {
from {
transform: translateX(0);
}
to {
	transform: translateX(-50%);
}
}
.marquee-track span {
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 800;
	color: rgba(90, 130, 249, 0.07); /* --- CHANGE: Faint new blue --- */
	text-transform: uppercase;
	white-space: nowrap;
}
.about-marquee-section .content-container {
	position: relative;
	z-index: 2;
}
.content-card {
	background: rgba(30, 41, 59, 0.6);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(90, 130, 249, 0.1); /* --- CHANGE: Faint new blue border --- */
	border-radius: 24px;
	padding: 3rem;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}
.content-card p {
	color: #d1d5db;
	font-size: 1.25rem;
	line-height: 1.6;
	margin: 0;
}

/* --- Technologies Section (Bento Grid) --- */
.tech-section {
	padding: 100px 0;
	background-color: var(--light-bg);
}
.tech-section .section-header {
	text-align: center;
	margin-bottom: 60px;
}
.tech-section .section-header .subtitle {
	color: var(--primary-color);
}
.tech-section .section-header .title {
	color: var(--text-dark);
}
.bento-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto auto;
	gap: 24px;
}
.bento-card {
	background-color: #EAF0FF; /* --- CHANGE: Tint of new light bg --- */
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
	border: 1px solid #DDE5FF; /* --- CHANGE: New blue tint border --- */
}
.card-large {
	background: #DDE5FF; /* --- CHANGE: Another new blue tint --- */
}
.bento-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 24px;
}
.logo-container {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.logo-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background-color: var(--card-bg);
	padding: 8px 16px;
	border-radius: 50px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}
.logo-item:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
	background-color: var(--card-bg);
}
.logo-item img {
	height: 28px;
	width: 28px;
	object-fit: contain;
}
.logo-item span {
	font-weight: 600;
	color: var(--text-dark);
	font-size: 0.9rem;
}

/* --- Features Section --- */
.feature-bg-circle {
	position: absolute;
	width: 400px;
	height: 400px;
	background-color: #DDE5FF; /* --- CHANGE: A tint of new blue --- */
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
/* --- Services Section (Overlapping Grid) --- */
.services-section {
	background-color: transparent;
	padding: 100px 0;
}
.services-section .section-title {
	font-size: 3rem;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
.service-card-new {
	background-color: var(--card-bg);
	padding: 2rem;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-new::after {
 content: '';
 position: absolute;
 bottom: 0;
 right: 0;
 width: 100%;
 height: 100%;
 /* --- CHANGE: Radial gradient with new blue --- */
 background: radial-gradient(circle at 80% 80%, rgba(90, 130, 249, 0.2), transparent 50%);
 filter: blur(40px);
 opacity: 0;
 z-index: -1;
 transition: opacity 0.4s ease;
}
.service-card-new:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}
.service-card-new:hover::after {
opacity: 1;
}
.service-icon-new {
	width: 60px;
	height: 60px;
	margin-bottom: 1.5rem;
	border-radius: 12px;
	background-color: #EAF0FF; /* --- CHANGE: New blue tint --- */
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
}
.service-card-new .service-title {
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
}
.service-card-new p {
	color: #4a5568;
	line-height: 1.6;
	margin-bottom: 0;
}
/* --- Testimonials Section --- */
.testimonials {
	padding: 80px 0 90px;
	position: relative;
	background-color: #EAF0FF; /* --- CHANGE: Light new blue tint for separation --- */
}
.testimonials .header-ares-app h2 span {
	color: var(--primary-color);
}
.testimonials .testimonial-item {
	text-align: center;
	border: 1px solid var(--border-color);
	padding: 40px;
	border-radius: 14px;
	margin-top: 50px;
	margin-right: 40px;
	background: var(--card-bg);
}
.testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: bold;
	text-align: left;
	margin: 10px 0 5px;
	color: var(--text-dark);
}
.testimonials .testimonial-item h4 {
	font-size: 14px;
	text-align: left;
	margin: 0 0 15px;
	color: #718096;
}
.testimonials .testimonial-item .stars {
	margin-bottom: 15px;
	text-align: left;
}
.testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px;
}
.testimonials .testimonial-item p {
	font-style: italic;
	margin: 0 auto 15px;
	text-align: left;
	color: var(--text-dark);
}
.testimonials .swiper-pagination {
	margin-top: 20px;
	position: absolute;
	right: 20px;
	left: auto;
	width: auto;
	top: 30px;
	width:0%;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 7px;
	height: 32px;
	background-color: #BCCDFE; /* --- CHANGE: New blue tint --- */
	opacity: 1;
	border-radius: 4px;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}

/* --- Footer --- */
.footer-main {
	background-color: var(--card-bg);
	color: #718096;
	font-size: 14px;
}
.footer-heading {
	font-weight: 600;
	color: var(--text-dark);
	font-size: 16px;
	margin-bottom: 20px;
}
.footer-links .nav-link {
	color: #718096;
	padding: 6px 0;
}
.social-icons a {
	font-size: 24px;
	color: var(--primary-color);
	margin: 0 10px;
}
.footer-bottom {
	background-color: var(--secondary-color);
	color: rgba(241, 244, 253, 0.7); /* --- CHANGE: Faint new blue tint --- */
}

/* === INFINITE SLIDER SECTION === */
.features-infinite-section {
	background-color: var(--secondary-color);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.features-infinite-section .section-header .section-title {
	color: var(--text-light);
	font-size: 2.5rem;
	font-weight: 600;
}
.features-infinite-section .section-header p {
	color: #a0aec0;
}
.infinite-slider-wrapper {
	position: relative;
}
.infinite-slider-wrapper .fade-overlay {
	position: absolute;
	top: 0;
	height: 100%;
	width: 150px;
	z-index: 2;
	pointer-events: none;
}
.fade-overlay.left {
	left: 0;
	background: linear-gradient(to right, var(--secondary-color), transparent);
}
.fade-overlay.right {
	right: 0;
	background: linear-gradient(to left, var(--secondary-color), transparent);
}
.features-infinite-slider {
	width: 100%;
	overflow: visible;
}
.features-infinite-slider .swiper-wrapper {
	transition-timing-function: linear !important;
}
.features-infinite-slider .swiper-slide {
	width: 320px;
	transition: transform 0.4s ease, filter 0.4s ease;
	filter: brightness(0.8);
}
.features-infinite-slider .swiper-slide:hover {
	transform: scale(1.05) translateY(-10px);
	filter: brightness(1);
	z-index: 10;
}
.feature-card {
	background-color: #253352; /* Slightly lighter navy */
	border-radius: 20px;
	border: 1px solid rgba(90, 130, 249, 0.2); /* --- CHANGE: New blue tint border --- */
	box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	text-align: center;
	width: 100%;
}
.feature-image {
	padding: 1rem;
	background-color: #314269; /* Even lighter navy */
}
.feature-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 3 /5;
	object-fit: contain;
	border-radius: 10px;
}
.feature-content {
	padding: 1.5rem;
}
.feature-content h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}
.feature-content p {
	font-size: 0.9rem;
	color: #a0aec0;
	line-height: 1.5;
	margin-bottom: 0;
}
.vendor-seaction {
	background: #111a2c; /* A slightly different dark bg */
}
.vendor-seaction .feature-card { background-color: #1a253c; }
.vendor-seaction .feature-image { background-color: #253352; }


/* === GRAPHIC KEY FACTS === */
.key-facts-section-graphic {
	background-color: var(--secondary-color);
}
.key-facts-section-graphic .section-subtitle {
	color: var(--primary-color);
}
.key-facts-section-graphic .section-title {
	color: var(--text-light);
}
.graphic-stat-item {
	position: relative;
	text-align: center;
	padding: 2rem 0;
	overflow: hidden;
}
.graphic-stat-bg-number {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: clamp(6rem, 15vw, 12rem);
	font-weight: 900;
	color: rgba(90, 130, 249, 0.3); /* --- CHANGE: New blue tint --- */
	line-height: 1;
	z-index: 1;
	font-size: 110px;
}
.graphic-stat-label {
	position: relative;
	z-index: 2;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-light);
	max-width: 200px;
	margin: 0 auto;
}

/* === HOW IT WORKS TABS === */
.how-it-works-tabs {
	background-color: transparent;
	padding: 80px 0px;
}
.how-it-works-tabs .nav-pills .nav-link {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid transparent;
	margin-bottom: 1rem;
	background-color: var(--card-bg);
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	text-align: left;
	cursor: pointer;
}
.how-it-works-tabs .nav-pills .nav-link.active {
	background-color: #EAF0FF; /* --- CHANGE: New blue tint --- */
	border-color: var(--primary-color);
	box-shadow: 0 8px 20px -10px rgba(90, 130, 249, 0.4); /* --- CHANGE: New blue shadow --- */
}
.how-it-works-tabs .nav-pills .nav-link .step-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
}
.how-it-works-tabs .nav-pills .nav-link h4 {
	font-weight: 600;
	color: var(--text-dark);
}
.how-it-works-tabs .nav-pills .nav-link p {
	color: #718096;
	margin-bottom: 0;
}
.how-it-works-tabs .tab-content .tab-pane {
	transition: opacity 0.4s ease-in-out;
}
 .how-it-works-tabs .tab-content .tab-pane:not(.show) {
 display: none;
}

/* === LAYERED PROCESS SECTION === */
.process-section {
	padding: 100px 0;
	background-color: transparent;
}
.section-header {
	
	margin: 0 auto 4rem auto;
}
.section-header .section-title {
	font-weight: 600;
	color: var(--text-dark);
	font-size: 2.75rem;
}
.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.process-step {
	position: relative;
	padding-top: 40px;
}
.step-number-bg {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 120px;
	font-weight: 800;
	color: rgba(26, 37, 60, 0.04);
	line-height: 1;
	z-index: 1;
	user-select: none;
}
.step-content {
	position: relative;
	z-index: 2;
	background-color: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	height: 100%;
	box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover .step-content {
	transform: translateY(-8px);
	box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
}
.step-content h4 {
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
}
 .step-content h4::before {
 content: '';
 display: inline-block;
 width: 20px;
 height: 4px;
 background-color: var(--primary-color);
 margin-right: 12px;
 border-radius: 2px;
}
.step-content p {
	color: #4a5568;
	line-height: 1.6;
}
        
/* === HEADER CONTACT ICONS === */
.header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	color: var(--text-dark);
	font-size: 1.2rem;
	text-decoration: none;
	margin-right: 1rem;
	transition: all 0.3s ease;
}
.header-icon:hover {
	background-color: var(--primary-color);
	color: var(--text-light);
	border-color: var(--primary-color);
	transform: translateY(-2px);
}
.contact-sales-btn {
	background-color: var(--primary-color);
	color: var(--card-bg) !important;
	font-weight: 600;
	padding: 0.6rem 1.25rem;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(90, 130, 249, 0.3); /* --- CHANGE: New blue shadow --- */
	transition: all 0.3s ease;
}
.contact-sales-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(90, 130, 249, 0.4); /* --- CHANGE: New blue shadow --- */
	background-color: #476AD9; /* --- CHANGE: Darker new blue --- */
}

/* === AURORA CONTACT SECTION === */
.contact-aurora-section {
	background-color: var(--secondary-color);
	position: relative;
	overflow: hidden;
	padding:60px 0px
}
.contact-aurora-section .section-title, .contact-aurora-section .text-secondary {
	color: var(--text-light) !important;
}
.aurora-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
 .aurora-bg::before, .aurora-bg::after {
content: '';
position: absolute;
border-radius: 50%;
filter: blur(120px);
}
 .aurora-bg::before {
width: 500px;
height: 500px;
background: rgba(90, 130, 249, 0.2); /* --- CHANGE: New blue aurora --- */
top: -150px;
left: -200px;
}
 .aurora-bg::after {
width: 400px;
height: 400px;
background: rgba(100, 116, 139, 0.2);
bottom: -150px;
right: -150px;
}
.contact-aurora-section .container {
	position: relative;
	z-index: 1;
}
.aurora-card {
	background: rgba(241, 244, 253, 0.05); /* --- CHANGE: Faint new blue tint --- */
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(241, 244, 253, 0.1); /* --- CHANGE: Faint new blue border --- */
	border-radius: 1rem;
	padding: 1.5rem;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}
.aurora-card:hover {
	background: rgba(241, 244, 253, 0.1); /* --- CHANGE: Faint new blue tint --- */
	transform: translateY(-8px);
}
.aurora-card .icon {
	font-size: 2.5rem;
	color: var(--text-light);
	margin-bottom: 1.5rem;
}
.aurora-card h5 {
	color: var(--text-light);
	font-weight: 600;font-size: 16px;
}
.aurora-card a, .aurora-card p {
	color: #D1D5DB;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}
.aurora-card .qr-code {
	max-width:60px;
}

/* === MODERN FAQ === */
.faq-modern-section {
	background-color: transparent;
	padding:80px 0px
}
.faq-modern-section .card {
	background-color: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	margin-bottom: 1rem;
	box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease;
}
.faq-modern-section .card:hover {
	box-shadow: 0 8px 25px -10px rgba(0, 0, 0, 0.1);
}
.faq-modern-section .card-header {
	background-color: transparent;
	border: none;
	padding: 0;
}
.faq-modern-section .btn-link {
	width: 100%;
	text-align: left;
	text-decoration: none;
	font-weight: 600;
	color: var(--text-dark);
	padding: 1.5rem;
	position: relative;
}
 .faq-modern-section .btn-link:not(.collapsed) {
 background-color: #EAF0FF; /* --- CHANGE: New blue tint --- */
 color: var(--primary-color);
 border-top-left-radius: 12px;
 border-top-right-radius: 12px;
}
 .faq-modern-section .btn-link::after {
 content: '+';
 font-size: 1.5rem;
 font-weight: 700;
 position: absolute;
 right: 1.5rem;
 top: 50%;
 transform: translateY(-50%);
 transition: transform 0.3s ease;
}
 .faq-modern-section .btn-link:not(.collapsed)::after {
 content: '-';
}
.faq-modern-section .card-body {
	padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
    color: #4a5568;
    padding-top: 19px;
}

#mainNavbar{ float:right; margin-top:10px; padding-top:9px; padding-bottom:10px;	}


/* === NEW HERO SECTION (COVERFLOW) === */
.hero-section-new {
    background-color: var(--light-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content-new {
    max-width: 800px;
    margin: 0 auto 4rem auto; margin-top:50px;
}

.hero-content-new .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    line-height: 1.2; font-weight:700;
}

.hero-content-new .hero-description {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* --- Swiper Container & Slide Styling --- */
.hero-swiper-container {
    width: 100%;
    
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px; /* Adjust width as needed */
    height: 600px; /* Adjust height as needed */ box-shadow:0px 0px 0px!important;
}

.swiper-slide img {
    display: block;
    box-shadow:0px 0px 0px!important;
    object-fit: contain; /* Ensures the full screen is visible */
    border-radius: 24px;
   
}
.swiper-slide{ box-shadow:0px 0px 0px #000!important;}
/* --- Swiper Pagination Customization --- */
.hero-swiper-container .swiper-pagination-bullet {
    background-color: rgba(90, 130, 249, 0.5); /* --- CHANGE: Semi-transparent new blue --- */
    opacity: 1;
    transition: background-color 0.3s ease;
}

.hero-swiper-container .swiper-pagination-bullet-active {
    background-color: var(--primary-color); /* Solid primary color */
}


/* === NEW FEATURE GRID SECTION === */
.feature-grid-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.feature-grid-phone {
    filter: drop-shadow(0 20px 35px rgba(26, 37, 60, 0.15));
    border-radius: 24px;
  
    margin: 0 auto;
}

.feature-grid-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    background-color: transparent;
    padding: 1rem;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.feature-grid-item:hover {
    background-color: rgba(90, 130, 249, 0.05); /* --- CHANGE: Very subtle new blue hover effect --- */
}

/* On larger screens, the left column items have their icon on the right */
@media (min-width: 992px) {
    .feature-grid-item.text-lg-right {
        flex-direction: row-reverse;
        text-align: right;
    }
}

.feature-grid-item .icon {
    flex-shrink: 0; /* Prevents icon from shrinking */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #EAF0FF; /* --- CHANGE: New blue tint --- */
    color: var(--primary-color);
    font-size: 1.75rem;
}

.feature-grid-item h4 {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature-grid-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive ordering for smaller screens */
@media (max-width: 991.98px) {
    .feature-grid-item {
        text-align: left; /* Always left-aligned on mobile */
    }
    .feature-grid-section .section-header {
        margin-bottom: 2rem;
    }
}

  /* === NEW FEATURE SHOWCASE SECTION === */
.feature-showcase-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.feature-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* The decorative shape behind the phone */
.background-shape {
    position: absolute;
    width: 90%;
    height: 90%;
    background-color: rgba(90, 130, 249, 0.1); /* --- CHANGE: Light, transparent new blue --- */
    border-radius: 4rem;
    transform: rotate(-15deg);
    z-index: 0;
}

.phone-image {
    position: relative;
    z-index: 1;
   
    filter: drop-shadow(0 25px 40px rgba(26, 37, 60, 0.2));
    /* Add a subtle floating animation */
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.feature-text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Styling for the list of benefits */
.feature-benefits-list {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
}

.feature-benefits-list li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.feature-benefits-list .icon-circle {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #EAF0FF; /* --- CHANGE: Very light tint of new blue --- */
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .feature-showcase-section {
        padding: 60px 0;
    }
    .feature-text-content {
        text-align: center;
        margin-top: 2rem;
    }
    .feature-benefits-list li {
        text-align: left;
    }
}

/* === NEW OVERLAPPING FEATURE SECTION (CSS-ONLY) === */
.feature-overlap-section {
    padding: 100px 0;
    position: relative;
}

.feature-overlap-wrapper {
    position: relative;
    max-width: 1000px; /* Container for the entire interactive element */
    margin: 4rem auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px; /* Ensure space for absolutely positioned items */
}

.feature-phone-container {
    position: relative; /* Can be static, but relative is safer for z-index */
    z-index: 10; /* Phone is on top */
}

.feature-phone-overlap {
  
    border-radius: 24px;
    filter: drop-shadow(0 20px 35px rgba(26, 37, 60, 0.2));
}

.feature-list-overlap {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feature-card-overlap {
    position: absolute;
    z-index: 5; /* Behind the phone */
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 320px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(225, 225, 225, 0.5);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(26, 37, 60, 0.08);
    transition: transform 0.3s ease, z-index 0s 0.3s;
}

.feature-card-overlap:hover {
    transform: scale(1.05);
    z-index: 11; /* Bring hovered card to the very top */
    transition: transform 0.3s ease, z-index 0s;
}

.feature-card-overlap .icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #EAF0FF; /* --- CHANGE: New blue tint --- */
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-card-overlap h4 {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.1rem;
}

.feature-card-overlap p {
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Precise positioning for each card */
.feature-top-left { top: 0; left: 0; }
.feature-middle-left { top: 50%; left: 0; transform: translateY(-50%); }
.feature-bottom-left { bottom: 0; left: 0; }

.feature-top-right { top: 0; right: 0; }
.feature-middle-right { top: 50%; right: 0; transform: translateY(-50%); }
.feature-bottom-right { bottom: 0; right: 0; }

/* === NEW TESTIMONIAL AUTO-SLIDER SECTION === */
.testimonial-slider-section {
    padding: 100px 0;
    background-color: var(--light-bg); padding-bottom:0px;
}

.testimonial-swiper {
    padding: 2rem 0 3rem 0 !important; /* Add padding for scale effect and pagination */
}

/* Styling for the slides */
.testimonial-swiper .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.85); /* Inactive slides are smaller */
    opacity: 0.6; /* Inactive slides are faded */
    height: auto; /* Allow height to adjust to content */
}

/* Active slide is full size and opaque */
.testimonial-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

/* We can re-use the card styling from the previous grid design */
.testimonial-card-new {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px -10px rgba(26, 37, 60, 0.08);
    height: 100%; /* Ensure all cards in view have same height */
    position: relative;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.testimonial-card-new .stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--light-bg);
}

.author-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
}

.author-info h4 {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0;
}

/* Custom Swiper Pagination */
.testimonial-swiper .swiper-pagination-bullet {
    background-color: rgba(90, 130, 249, 0.5); /* --- CHANGE: New blue tint --- */
    opacity: 1;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.process-timeline-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--light-bg); padding-bottom:0px;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* The central timeline line */
.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #EAF0FF; /* --- CHANGE: Very light new blue tint --- */
    top: 100px;
    bottom:100px;
    left: 50%;
    margin-left: -2px;
}

/* Container for each step */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* The icon on the timeline */
.timeline-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--card-bg);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.75rem;
}

/* Positioning for left and right items */
.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

/* Handle the icon positioning for even items */
.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

/* The content card */
.timeline-content {
    padding: 2rem;
    background-color: var(--card-bg);
    position: relative;
    border-radius: 16px;
    box-shadow: 0 8px 25px -10px rgba(26, 37, 60, 0.1);
    border: 1px solid var(--border-color);
}

.step-label {
    display: inline-block;
    background-color: #EAF0FF; /* --- CHANGE: New blue tint --- */
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0;
}

/* === NEW TECH SPOTLIGHT SECTION === */
.tech-spotlight-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden; /* Important for the background shape */
}

/* A decorative background shape for visual interest */
.tech-spotlight-bg {
    position: absolute;
    top: -200px;
    left: -300px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(90, 130, 249, 0.1), rgba(241, 244, 253, 0) 70%); /* --- CHANGE: New blue radial gradient --- */
    z-index: -1;
}

.tech-spotlight-wrapper {
    margin-top: 4rem;
    display: grid;
    gap: 2rem;
}

.tech-card {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1/3 for header, 2/3 for logos */
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 30px -15px rgba(26, 37, 60, 0.1);
    overflow: hidden; /* To keep border-radius consistent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(26, 37, 60, 0.2);
}

.tech-card-header {
    background-color: #EAF0FF; /* --- CHANGE: Light tint of new blue --- */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-card-header .icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--primary-color);
    color: var(--card-bg);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.tech-card-header h3 {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.tech-card-header p {
    color: #4a5568;
    line-height: 1.6;
}

.tech-card-body {
    padding: 2rem;
}

/* === NEW BRAND PILLARS SECTION === */
.brand-pillars-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden; /* Important for background shape */
}

/* A subtle, decorative background shape */
.brand-pillars-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 1200px;
    height: 1200px;
    background-color: rgba(90, 130, 249, 0.05); /* --- CHANGE: Very faint new blue --- */
    border-radius: 4rem;
    z-index: 0;
}

.brand-pillars-section .container {
    position: relative;
    z-index: 1; /* Ensure content is above the background shape */
}

.pillar-card {
    background-color: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px -15px rgba(26, 37, 60, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(26, 37, 60, 0.15);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background-color: #EAF0FF; /* --- CHANGE: Light tint of new blue --- */
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.pillar-card h4 {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pillar-card p {
    color: #4a5568;

    line-height: 1.7;
    margin-bottom: 0;
}
.swiper-3d .swiper-slide-shadow-left{ border-radius:50px;}
.swiper-3d .swiper-slide-shadow-right{ border-radius:50px;}

.navbar-brand img{width: 9%;
    margin-top: 8px;}
/* === RESPONSIVE STYLES === */

@media (max-width: 991.98px) {
    .hero-section-new{padding-top:0px;}
    .hero-panel h1, .hero-split-section .hero-title { font-size: 40px !important; }
    .text-right { text-align: center !important; }
    .hero-split-section { flex-direction: column; height: auto; }
    .panel-text { min-height: 60vh; text-align: center; }
    .panel-visual { min-height: 70vh; }
    .services-grid, .bento-grid { grid-template-columns: 1fr; }
    .card-large, .services-grid .service-card-new { grid-column: span 1; margin-top: 0; }
    .contact-sales-btn{font-size: 8px;letter-spacing:1px;padding: 10px 10px;}
    .header-contact-group { justify-content: center; }
    #mainNavbar{margin-right: 14px;}
    .navbar-brand{margin:10px 0px 0px 10px;font-size:14px;}
    .navbar-brand img{width:20%;margin-top:0px;}
    .how-it-works-tabs{padding-bottom: 0px;}
    .services-section .section-title { font-size: 32px; }
    .header-icon{width: 29px; height: 29px; font-size: 13px; margin-right: 9px;}
    .process-grid { grid-template-columns: 1fr; }
    .section-header .section-title { font-size: 2.25rem; }
    .testimonials .righttext { display: none; }
    .tech-card { grid-template-columns: 1fr; }
    .tech-card-header { text-align: center; align-items: center; }
    .process-timeline::after { left: 35px; }
    .timeline-item { width: 100%; padding-left: 80px; padding-right: 15px; }
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; }
    .timeline-icon { left: 5px; }
    .timeline-item:nth-child(even) .timeline-icon{left: 5px; }
    .feature-overlap-wrapper { display: block; min-height: auto; }
    .feature-list-overlap { position: static; display: flex; flex-direction: column; align-items: center; margin-top: 2rem; }
    .feature-card-overlap { position: static; transform: none !important; width: 100%; max-width: 400px; margin-bottom: 1rem; }
    .feature-phone-container { text-align: center; }
}
@media (max-width: 767.98px) {
    .graphic-stat-bg-number{font-size: 99px!important;}
    .contact-aurora-section .col-lg-3{ margin-bottom:30px;}
    .infinite-slider-wrapper .fade-overlay { width:0px; }
    .hero-image-marquee { height: 200px; padding:0px 20px }
    .btn-app-store { padding: 10px 11px; font-size: 15px; }
    .feature-bg-circle {display:none}
}






















/* === INTERACTIVE FEATURE SHOWCASE === */
.feature-interactive-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Feature selector items on the left */
.selector-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.selector-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
}

.selector-item.active {
    background-color: #EAF0FF; /* Updated to new blue tint */
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px -10px rgba(90, 130, 249, 0.4); /* Updated to new blue tint */
    transform: translateX(10px);
}

.selector-item .icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    font-size: 1.75rem;
}

.selector-item .content h4 {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.selector-item .content p {
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Phone showcase on the right */
.phone-showcase-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

#feature-phone-image {
    position: relative;
    z-index: 1;
    max-width: 320px; /* Control the phone image size */
    border-radius: 24px;
    filter: drop-shadow(0 25px 40px rgba(26, 37, 60, 0.2));
    transition: opacity 0.3s ease-in-out;
}















/* === NEW SCROLLYTELLING FEATURE SECTION === */
.feature-scrolly-section {
    padding: 100px 0;
}

.scrolly-wrapper {
    display: flex;
    gap: 5%;
    margin-top: 5rem;
}

/* Left side with the scrolling text */
.scrolly-text-pane {
    width: 45%;
    position: relative;
}

.scrolly-step {
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 70vh; /* Creates the space for scrolling */
    opacity: 0.3;
    transition: opacity 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
    border: 1px solid var(--border-color);
}
.scrolly-step.is-active {
    opacity: 1;
    background-color: var(--card-bg);
    transform: scale(1.02);
    box-shadow: 0 15px 35px -10px rgba(26, 37, 60, 0.1);
}
.scrolly-step:last-child {
    margin-bottom: 30vh;
}

.scrolly-step .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #EAF0FF; /* New blue tint */
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.scrolly-step h4 {
    font-weight: 600;
    color: var(--text-dark);
}
.scrolly-step p {
    color: #4a5568;
    line-height: 1.7;
}

/* Right side with the sticky phone */
.scrolly-phone-pane {
    width: 50%;
    position: relative;
}

.phone-mockup {
    position: sticky;
    top: 150px; /* Adjust vertical position */
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

#scrolly-phone-screen {
    width: 100%;
    border-radius: 24px;
    filter: drop-shadow(0 25px 40px rgba(26, 37, 60, 0.2));
    transition: opacity 0.3s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .scrolly-wrapper {
        flex-direction: column;
    }
    .scrolly-text-pane, .scrolly-phone-pane {
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .scrolly-step {
        margin-bottom: 3rem; /* Reduce space on mobile */
    }
    .phone-mockup {
        position: static; /* Remove sticky behavior on mobile */
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    .scrolly-step.is-active {
        transform: none; /* Disable scale effect on mobile */
    }
}