/*
  ==================================
  NEW COLOR PALETTE APPLIED
  Primary: #21ACAE (Modern Teal)
  Secondary: #1d283a (Dark Navy Blue - Retained for contrast)
  ==================================
*/

:root {
  /* New Color Palette */
  --primary-color: #21ACAE;      /* Main Accent: Modern Teal */
  --primary-darker: #1A898A;    /* Darker Teal for Hover States */
  --secondary-color: #1d283a;   /* Dark Backgrounds: Navy Blue (Retained) */
  --light-bg: #F7FCFC;           /* Main Page Background: Very light off-white with a hint of teal */
  --primary-light-tint: #E9F7F7;  /* A very light tint of the primary teal */

  /* Text & Utility Colors (Largely Retained for Neutrality) */
  --text-dark: #1d283a;       /* Dark Text: Navy Blue */
  --text-light: #ffffff;       /* Light Text: White for high contrast on dark BG */
  --text-muted: #4b5563;       /* Softer gray for paragraph text */
  --card-bg: #ffffff;          /* White for cards */
  --border-color: #e5e7eb;     /* A neutral light border */

  /* Font Variables (Unchanged) */
  --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:73px; /* 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); /* Changed for better contrast on teal */
	border-radius: 8px;
	padding: 10px 25px;
	font-weight: 600;
}
.btn-brand:hover {
	background-color: var(--primary-darker);
	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: var(--text-muted);
	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);text-decoration: none;
}
.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(255, 255, 255, 0.07);
	text-transform: uppercase;
	white-space: nowrap;
}
.about-marquee-section .content-container {
	position: relative;
	z-index: 2;
}
.content-card {
	background: rgba(29, 40, 58, 0.6); /* Transparent dark blue */
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	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: var(--primary-light-tint); /* Tint of light teal */
	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 var(--border-color);
}
.card-large {
	grid-column: span 2;
	background: var(--primary-light-tint); /* Another teal 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: var(--primary-light-tint); /* A tint of primary */
	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%;
 background: radial-gradient(circle at 80% 80%, rgba(33, 172, 174, 0.2), transparent 50%); /* Teal glow */
 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: var(--primary-light-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: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 0;
}
/* --- Testimonials Section --- */
.testimonials {
	padding: 80px 0 90px;
	position: relative;
	background-color: var(--primary-light-tint); /* Light 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: var(--primary-color);
	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: #a3d9da; /* Lighter teal */
	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(255, 255, 255, 0.7);
}
/* === 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: #25334a; /* Slightly lighter navy */
	border-radius: 20px;
	border: 1px solid rgba(33, 172, 174, 0.2);
	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: var(--secondary-color);
}
.vendor-seaction .feature-image {
	background-color: #25334a;
}
/* === 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(33, 172, 174, 0.3); /* Teal text-stroke color */
	line-height: 1;
	z-index: 1;
	font-size: 70px;
}
.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: var(--primary-light-tint);
	border-color: var(--primary-color);
	box-shadow: 0 8px 20px -10px rgba(33, 172, 174, 0.4);
}
.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(29, 40, 58, 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: var(--text-muted);
	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); /* Changed for contrast */
	border-color: var(--primary-color);
	transform: translateY(-2px);
}
.contact-sales-btn {
	background-color: var(--primary-color);
	color: var(--text-light) !important; /* Changed for contrast */
	font-weight: 600;
	padding: 0.6rem 1.25rem;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(33, 172, 174, 0.3);
	transition: all 0.3s ease;
}
.contact-sales-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(33, 172, 174, 0.4);
	background-color: var(--primary-darker);
}
/* === 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(33, 172, 174, 0.15); /* Teal 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(255, 255, 255, 0.05);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 1.5rem;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}
.aurora-card:hover {
	background: rgba(255, 255, 255, 0.1);
	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: var(--primary-light-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;padding-top: 16px;
	color: var(--text-muted);
}
#mainNavbar {
	float: right;
    margin-top: 10px;
    padding-top: 9px;
    padding-bottom: 15px;
}
/* === 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: var(--text-muted);
	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(33, 172, 174, 0.5); /* Semi-transparent primary color */
	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(29, 40, 58, 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(33, 172, 174, 0.05); /* Very subtle 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: var(--primary-light-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: var(--text-muted);
	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(33, 172, 174, 0.1); /* Light, transparent primary color */
	border-radius: 4rem;
	transform: rotate(-15deg);
	z-index: 0;
}
.phone-image {
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 25px 40px rgba(29, 40, 58, 0.2));
	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: var(--primary-light-tint); /* Very light tint of primary color */
	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(29, 40, 58, 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(29, 40, 58, 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: var(--primary-light-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: var(--text-muted);
	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(29, 40, 58, 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; /* Kept gold star color for universal recognition */
	margin-bottom: 1rem;
}
.testimonial-text {
	color: var(--text-muted);
	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(33, 172, 174, 0.5);
	opacity: 1;
}
.testimonial-swiper .swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991.98px) {
 .feature-overlap-wrapper {
 display: block; /* Change from flex to block */
 min-height: auto;
}
 .feature-list-overlap {
 position: static; /* Remove absolute positioning */
 display: flex;
 flex-direction: column;
 align-items: center;
 margin-top: 2rem;
}
 .feature-card-overlap {
 position: static; /* Remove absolute positioning */
 transform: none !important; /* Reset transform */
 width: 100%;
 max-width: 400px;
 margin-bottom: 1rem;
}
 .feature-phone-container {
 text-align: center;
}
}
.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: var(--primary-light-tint); /* Very light tint */
 top: 0;
 bottom: 0;
 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(29, 40, 58, 0.1);
	border: 1px solid var(--border-color);
}
.step-label {
	display: inline-block;
	background-color: var(--primary-light-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: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991.98px) {
 .process-timeline::after {
 left: 35px; /* Move the line to the left */
}
 .timeline-item {
 width: 100%;
 padding-left: 80px; /* Make space for the icon and line */
 padding-right: 15px;
}
 .timeline-item:nth-child(odd),  .timeline-item:nth-child(even) {
 left: 0;
}
 .timeline-icon {
 left: 5px; /* Position the icon over the line */
}
}
/* === 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(33, 172, 174, 0.08), rgba(247, 252, 252, 0) 70%);
	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(29, 40, 58, 0.1);
	overflow: hidden; /* To keep border-radius consistent with borders */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tech-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px -15px rgba(29, 40, 58, 0.2);
}
.tech-card-header {
	background-color: var(--primary-light-tint); /* Light tint of primary */
	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(--text-light); /* Changed for contrast */
	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: var(--text-muted);
	line-height: 1.6;
}
.tech-card-body {
	padding: 2rem;
}
/* Re-using the existing logo styles, which are great */
.logo-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}
.logo-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background-color: var(--light-bg);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}
.logo-item:hover {
	transform: scale(1.05);
	background-color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.logo-item img {
	height: 24px;
	width: 24px;
	object-fit: contain;
}
.logo-item span {
	font-weight: 500;
	color: var(--text-dark);
	font-size: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991.98px) {
 .tech-card {
 grid-template-columns: 1fr; /* Stack header on top of body */
}
 .tech-card-header {
 text-align: center;
 align-items: center;
}
}
/* === 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(33, 172, 174, 0.05); /* Very faint primary color */
	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(29, 40, 58, 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(29, 40, 58, 0.15);
}
.pillar-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem auto;
	border-radius: 50%;
	background-color: var(--primary-light-tint); /* Light tint of primary color */
	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: var(--text-muted);
	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: 45%;
	margin-top: 3px;
}
.bg-white {
	background-color: #1d283a !important;
}
.bi-whatsapp::before {
color:#fff
}
.bi-telephone::before {
color:#fff
}
/* === RESPONSIVE STYLES === */

@media (max-width: 991.98px) {
 .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: 10px;
}
 .header-contact-group {
justify-content: center;
}
 #mainNavbar {
margin-right: 14px;
}
 .navbar-brand {
margin:6px 0px 0px 10px;
}
 .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;
}
}
@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
}
}
/*--------------------------------------------------------------
# Redesigned "Gradient Flow Showcase" Section
--------------------------------------------------------------*/
.feature-flow {
	padding: 80px 0;
	background-color: #1d283a; /* Or your var(--secondary-color) */
	color: #ffffff; /* Or your var(--text-light) */
	position: relative;
	overflow: hidden;
}
.feature-flow .section-title {
	color: #ffffff;
}
.feature-flow .lead {
	color: rgba(255, 255, 255, 0.7);
}
.feature-flow .section-header {
	margin-bottom: 60px;
}
/* Main wrapper for the flow timeline */
.feature-flow .flow-wrapper {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}
/* The SVG Path styling */
.feature-flow .flow-path-svg {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	width: 100px; /* Width of the SVG viewbox */
	z-index: 0;
}
.feature-flow .flow-path-svg path {
	fill: none;
	stroke: var(--primary-color);
	opacity: 0.3;
}
/* Container for all the text items */
.feature-flow .flow-items-container {
	position: relative;
	z-index: 1;
}
/* Individual flow item */
.feature-flow .flow-item {
	position: relative;
	width: 50%;
	padding: 0 40px;
	margin-bottom: 60px;
}

/* Position items on alternating sides */
.feature-flow .flow-item:nth-child(odd) {
 left: 0;
 text-align: right;
}
 .feature-flow .flow-item:nth-child(even) {
 left: 50%;
 text-align: left;
}
/* Glassmorphic card styling */
.feature-flow .flow-card {
	padding: 30px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	transition: all 0.3s ease;
}
.feature-flow .flow-card:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: scale(1.03);
}
.feature-flow .flow-card .icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: var(--text-light); /* Changed for contrast */
	font-size: 24px;
	margin-bottom: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.feature-flow .flow-card h4 {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 8px;
}
.feature-flow .flow-card p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 991.98px) {
 .feature-flow .flow-path-svg {
 left: 30px; /* Move the line to the far left */
 transform: translateX(0);
}
 .feature-flow .flow-item {
 width: 100%;
 padding-left: 80px; /* Make room for the line */
 padding-right: 15px;
 text-align: left !important;
}
 .feature-flow .flow-item:nth-child(odd),  .feature-flow .flow-item:nth-child(even) {
 left: 0;
}
}
/*--------------------------------------------------------------
# Staggered Grid with Central Showcase Section
--------------------------------------------------------------*/
.section-bg {
	background-color: var(--light-bg);
}
.feature-staggered-center {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}
.feature-staggered-center .section-header {
	margin-bottom: 60px;
}
/* Central Image Styling */
.feature-staggered-center .center-image-wrapper {
	text-align: center;
}
.feature-staggered-center .center-image-wrapper img {
	max-width: 320px;
	filter: drop-shadow(0 25px 40px rgba(29, 40, 58, 0.2));
}
/* Staggered Column container */
.staggered-column {
	display: flex;
	flex-direction: column;
	gap: 24px; /* The space between cards in a column */
}
/* The individual feature card (re-using previous styles) */
.staggered-card {
	background-color: var(--card-bg);
	padding: 30px;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	box-shadow: 0 5px 20px -5px rgba(29, 40, 58, 0.05);
	transition: all 0.3s ease;
}
.staggered-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px -10px rgba(29, 40, 58, 0.15);
}
.staggered-card .icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background-color: var(--primary-light-tint);
	color: var(--primary-color);
	font-size: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.staggered-card h4 {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 10px;
}
.staggered-card p {
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 991.98px) {
  /* On mobile, we want the image to be first, then the cards */
  .feature-staggered-center .center-image-wrapper {
 order: 1; /* Make image first */
}
 .feature-staggered-center .col-lg-4:first-child {
 order: 2; /* Left column second */
}
 .feature-staggered-center .col-lg-4:last-child {
 order: 3; /* Right column last */
}
}
/*--------------------------------------------------------------
# Feature Spotlight Tabs Section
--------------------------------------------------------------*/
.section-bg {
	background-color: var(--light-bg);
}
.feature-spotlight-tabs {
	padding: 80px 0;
}
.feature-spotlight-tabs .section-header {
	margin-bottom: 40px;
}
/* Tab Navigation (The Pills) */
.feature-spotlight-tabs .nav-pills {
	gap: 15px;
	margin-bottom: 40px;
}
.feature-spotlight-tabs .nav-pills .nav-link {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: var(--card-bg);
	color: var(--text-muted);
	padding: 12px 25px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 50px;
	border: 1px solid var(--border-color);
	box-shadow: 0 4px 10px -5px rgba(29, 40, 58, 0.05);
	transition: all 0.3s ease;
}
.feature-spotlight-tabs .nav-pills .nav-link:hover {
	color: var(--text-dark);
}
/* Active Tab Styling */
.feature-spotlight-tabs .nav-pills .nav-link.active {
	background-color: var(--primary-color);
	color: var(--text-light); /* Changed for contrast */
	border-color: var(--primary-color);
	box-shadow: 0 5px 15px -5px rgba(33, 172, 174, 0.5);
}
.feature-spotlight-tabs .nav-pills .nav-link.active i {
	color: var(--text-light);
}
.feature-spotlight-tabs .nav-pills .nav-link i {
	font-size: 1.1rem;
	color: var(--primary-color);
	transition: color 0.3s ease;
}
/* Main Content Card Styling */
.feature-spotlight-tabs .tab-content-card {
	background-color: var(--card-bg);
	padding: 50px;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	box-shadow: 0 15px 40px -15px rgba(29, 40, 58, 0.1);
}
.feature-spotlight-tabs .tab-content-card h3 {
	font-size: 28px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 15px;
}
.feature-spotlight-tabs .tab-content-card p {
	line-height: 1.7;
}
.feature-spotlight-tabs .tab-content-card img {
	max-width: 320px;
	filter: drop-shadow(0 20px 30px rgba(29, 40, 58, 0.1));
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
 .feature-spotlight-tabs .nav-pills {
 flex-wrap: wrap; /* Allow tabs to wrap on mobile */
}
 .feature-spotlight-tabs .tab-content-card {
 padding: 30px;
 text-align: center;
}
 .feature-spotlight-tabs .tab-content-card img {
 margin-top: 30px;
}
}
/*--------------------------------------------------------------
# Gradient Card Showcase Hero Section
--------------------------------------------------------------*/
.hero-gradient-card {
	padding: 80px 0;
	background-image: linear-gradient(to right, var(--primary-color), #a6e3e9, var(--primary-color));
	
	overflow: hidden;
}
/* Text Content Styling */
.hero-gradient-card .hero-text-content {
	margin: 0 auto 50px auto;
}
.hero-gradient-card .hero-subtitle {
	color: #1d283a;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.hero-gradient-card .hero-title {
	font-size: 60px;
    font-weight: 700;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.2;
}
.hero-gradient-card .hero-description {
	font-size: 1.1rem;
	color: var(--text-muted);
	margin: 20px 0 30px 0;
}
.hero-gradient-card .app-buttons {
	display: flex;
	justify-content: center;
	gap: 15px; float:left;
}
/* Gradient Card Styling */
.gradient-card-wrapper {
	display: flex;
	justify-content: center;
}
.gradient-card {
	position: relative;
	border-radius: 24px;
}
.gradient-card:hover {
}

/* The Noise/Grain Texture Overlay */
.gradient-card::after {
}
.hero-gradient-card .hero-main-image {
	position: relative;
	z-index: 2; /* Place image above the noise overlay */
	max-width: 100%;
	border-radius: 12px;
	filter: drop-shadow(0 20px 30px rgba(29, 40, 58, 0.2));
}

/* Responsive adjustments */
@media (max-width: 768px) {
 .hero-gradient-card {
 padding: 60px 0;
}
 .gradient-card {
 padding: 1rem;
}
}
/*--------------------------------------------------------------
# Elegant Features List Section
--------------------------------------------------------------*/
.section-bg {
	background-color: var(--light-bg);
}
.feature-list {
	padding: 80px 0;
}
.feature-list .section-header {
	margin-bottom: 50px;
}
/* The main container for the list */
.feature-list-wrapper {
	background-color: var(--card-bg);
	border-radius: 16px;
	border: 1px solid var(--border-color);
	box-shadow: 0 10px 30px -15px rgba(29, 40, 58, 0.1);
	overflow: hidden; /* To keep border-radius consistent with borders */
}
/* Individual list item styling */
.feature-list-item {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	padding: 30px;
	transition: background-color 0.3s ease;
}

/* Add a border between items, but not after the last one */
.feature-list-item:not(:last-child) {
 border-bottom: 1px solid var(--border-color);
}
.feature-list-item:hover {
	background-color: var(--light-bg); /* A subtle hover effect */
}
/* Icon Styling */
.feature-list-item .icon-wrapper {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 12px;
	background-color: var(--primary-light-tint);
	color: var(--primary-color);
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.feature-list-item h4 {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
}
.feature-list-item p {
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
 .feature-list-item {
 flex-direction: column; /* Stack icon on top of text */
 text-align: center;
 align-items: center;
 gap: 20px;
}
}
/*--------------------------------------------------------------
# Minimalist Icon Grid Section
--------------------------------------------------------------*/
.section-bg {
	background-color: var(--light-bg);
}
.services-minimal-grid {
	padding: 80px 0;
}
.services-minimal-grid .section-header {
	margin-bottom: 50px;
}
/* Individual Service Card Styling */
.service-card-minimal {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	padding: 30px;
	border-radius: 16px;
	height: 100%;
	/* Glassmorphism Effect */
  background: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}
.service-card-minimal:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px -10px rgba(29, 40, 58, 0.1);
	background: rgba(255, 255, 255, 0.9);
	border-color: var(--primary-color);
}
/* Icon Styling */
.service-card-minimal .icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 12px;
	background-color: var(--primary-light-tint);
	color: var(--primary-color);
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Content Styling */
.service-card-minimal .content h4 {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
}
.service-card-minimal .content p {
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
 .service-card-minimal {
 flex-direction: column; /* Stack icon on top of text */
 text-align: center;
 align-items: center;
}
}
/* --- Section & Header Styles --- */
        .feature-spotlight-tabs {
	padding: 80px 0;
}
.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}
.section-header {
	text-align: center;
	margin-bottom: 50px;
}
.section-header .section-title {
	font-size: 2.8rem;
	font-weight: 600;
}
.section-header .lead {
	max-width: 700px;
	margin: 15px auto 0 auto;
	color: var(--text-secondary);
}
/* --- The Main Showcase Container --- */
        .petal-showcase {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 500px;
}
/* --- Central Content Display --- */
        .petal-content-display {
	width: 45%;
	max-width: 450px;
	background: var(--card-bg);
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	z-index: 10;
	transition: opacity 0.3s ease;
}
.petal-content-display.is-changing {
	opacity: 0.5;
}
.petal-content-display h3 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 15px;text-align: left;
}
.petal-content-display p {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 25px;
}
.feature-spotlight-tabs .feature-list {
	list-style: none;
	padding-left: 0;
	padding:0px;
}
.feature-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}
.feature-list i {
	color: var(--primary-color);
	font-size: 1.2rem;
}
/* --- Petal Navigation --- */
        .petal-nav {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.petal-item {
	position: absolute;
	width: 250px;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	border-radius: 16px;
	background: linear-gradient(135deg, #f8f9fa, #ffffff);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}
.petal-item:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.petal-item.active {
	border-color: var(--primary-color);
	background: linear-gradient(135deg, var(--primary-light-tint), #ffffff);
}
.petal-icon {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	display: grid;
	place-items: center;
	border-radius: 12px;
	font-size: 1.8rem;
	color: #fff;
}
.petal-title {
	font-size: 1.1rem;
	font-weight: 600;
}
/* Positioning the Petals */
        #petal-search {
	top: 0;
	left: 0;
}
#petal-scheduling {
	top: 0;
	right: 0;
}
#petal-listings {
	bottom: 0;
	left: 0;
}
#petal-support {
	bottom: 0;
	right: 0;
}
/* Petal-specific colors */
        #petal-search .petal-icon,
        #petal-scheduling .petal-icon,
        #petal-listings .petal-icon,
        #petal-support .petal-icon {
	background-color: var(--primary-color);
	color: var(--text-light); /* Changed for contrast */
}

/* --- Responsive Design for Mobile --- */
@media (max-width: 991px) {
 .petal-showcase {
 flex-direction: column;
 min-height: auto;
}
 .petal-nav { /* Repurpose the nav for vertical stacking */
 position: static;
 display: flex;
 flex-direction: column;
 gap: 15px;
 width: 100%;
 margin-bottom: 25px;
}
 .petal-item {
 position: static; /* Remove absolute positioning */
 width: 100%;
}
 .petal-content-display {
 width: 100%;
 max-width: 100%;
}
}



a.navbar-brand {     color: #fff !important;
    line-height: 70px;}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	.hero-interactive {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  
  font-family: 'Poppins', sans-serif; /* Recommended: Add Poppins from Google Fonts */
}

/* Background Shapes */
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  z-index: 0;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(88, 101, 242, 0.15);
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: rgba(250, 129, 73, 0.15);
  bottom: -150px;
  right: -150px;
}

.hero-interactive .container {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* --- Left Column: Content --- */
.hero-content {
  text-align: left;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #5865F2; /* A modern blue/purple */
  margin-bottom: 12px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #23272A;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* App Buttons */
.app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-app-store {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 24px;
  background-color: #23272A;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-app-store:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-app-store i {
  font-size: 32px;
}

.btn-app-store div {
  text-align: left;color: #fff;
}

.btn-app-store span {
  display: block;
  font-size: 12px;
  line-height: 1;
  opacity: 0.8;
}

.btn-app-store strong {
  font-size: 18px;
  font-weight: 600;
}


/* --- Right Column: Visuals --- */
.hero-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.phone-mockup-container {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1500px; /* This enables the 3D effect */
  animation: float 6s ease-in-out infinite; /* Floating animation */
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.phone-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 280px;

  transition: transform 0.3s ease-out;
 
}

/* Layering the phone mockups */
.mockup-1 {
  transform: translate(-100%, -50%) rotateY(25deg) rotateZ(-10deg);
  z-index: 1;
}

.mockup-2 {
  transform: translate(-50%, -50%);
  z-index: 3; /* Center mockup is on top */
  max-width: 300px; /* Make center one slightly larger */
}

.mockup-3 {
  transform: translate(0%, -50%) rotateY(-25deg) rotateZ(10deg);
  z-index: 2;
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    order: 2; /* Content comes after visuals on mobile */
  }
  
  .hero-visuals {
    order: 1;
    min-height: 450px;
  }

  .app-buttons {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-description {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-interactive {
    padding: 80px 0;
  }
  
  .hero-visuals {
     min-height: 380px;
  }
  
  .phone-mockup {
    max-width: 200px;
    border-width: 6px;
    border-radius: 18px;
  }
  
  .phone-mockup.mockup-2 {
    max-width: 220px;
  }

  .hero-title {
    font-size: 32px;
  }
}

























/* Design 2: Large Number Grid */
.process-grid-section .process-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid #e9e9e9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-grid-section .process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.process-grid-section .process-step-number {
  position: absolute;
  top: -20px;
  right: 15px;
  font-size: 6rem;
  font-weight: 800;
  color: var(--bs-primary);
  opacity: 0.07;color:#21acae;
  line-height: 1;
}
.process-grid-section .process-icon {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 15px;
  display: inline-block;
}
.process-grid-section .process-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
}










.process-grid-section {background: radial-gradient(circle, rgba(33, 172, 174, 0.08), rgba(247, 252, 252, 0) 70%);
    background-color: var(--primary-light-tint); padding:90px 0px 90px 0px}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
.tech-cards-section .subtitle {
  color:#21acae;
  font-weight: 600;
}
.tech-cards-section .title {
  font-weight: 600;
}

/* The Card Itself */
.tech-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Card Header Section */
.tech-card-header {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  border-bottom: 1px solid #e9ecef;
}
.tech-card-header .icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.tech-card-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.tech-card-header p {
  margin: 0;
  color: #6c757d;
  font-size: 0.95rem;
}

/* Card Body with the Logos */
.tech-card-body {
  padding: 25px;
  flex-grow: 1; /* Ensures body takes remaining space */
}
.logo-grid {
  display: grid;
  /* Creates a responsive grid that fits as many 80px columns as possible */
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 20px;
}
.logo-item {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.logo-item:hover {
  transform: scale(1.05);
  border-color: var(--bs-primary);
  background-color: #fff;
}
.logo-item img {
  height: 40px; /* Controls the size of the logo */
  width: 100%;
  object-fit: contain; /* Prevents logos from stretching */
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.tech-card-header i{font-size: 42px;}
.tech-cards-section{ padding:90px 0px 90px 0px}






















