/* --- Global Styles & Variables --- */
:root {
 --text-dark: #202020;
 --border-color: #1D1D1F;
 --accent-color: #C74E4E; /* New Theme Color */
 --font-display: 'Archivo Black', sans-serif;
 --font-mono: 'Space Mono', monospace;
}
body {
	font-family: 'Poppins', sans-serif;
	color: #555;
	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: #212529;
}
.section-title-light {
	font-weight: 600;
	color: #fff;
}
.section-subtitle {
	font-weight: 600;
	color: #C74E4E; /* Brand Color */
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
}
/* --- Header --- */
.navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.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: #C74E4E;
	color: #fff;
	border-radius: 8px;
	padding: 10px 25px;
	font-weight: 500;
}
.btn-brand:hover {
	background-color: #b04545; /* Darker shade of new theme color */
	color: #fff;
}
/* --- 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: #fff;
	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: #C74E4E;
	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: #666;
	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: #ffffff;
	border: 1px solid #e5e7eb;
	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: #fff;
	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: #111319;
	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(26, 29, 36, 0.6);
	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;
}
/* --- How It Works Section --- */
.how-it-works-section {
	background-color: #f8f9fa;
	padding: 80px 0;
}
.how-it-works-section .process-list {
	list-style: none;
	padding-left: 0;
}
.process-list li {
	margin-bottom: 2rem;
}
.process-list h4 {
	font-weight: 600;
	color: #000;
}
.process-list p {
	color: #000;
}
.process-card {
	background-color: #ffffff;
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	border: 1px solid #e9ecef;
	box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
	counter-increment: step-counter;
}
.process-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}
.process-card::before {
 content: '0' counter(step-counter);
 position: absolute;
 top: -10px;
 right: 15px;
 font-size: 4rem;
 font-weight: 800;
 color: rgba(0, 0, 0, 0.04);
 line-height: 1;
}
.process-card .card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	background: linear-gradient(45deg, #C74E4E, #d95858);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 2.5rem;
	box-shadow: 0 10px 20px -5px rgba(199, 78, 78, 0.4);
}
.process-card .card-title {
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--text-dark);
}
.process-row::before {
 content: '';
 position: absolute;
 top: 40px;
 left: 15%;
 right: 15%;
 height: 2px;
 background-image: linear-gradient(to right, #ced4da 50%, transparent 50%);
 background-size: 20px 2px;
 background-repeat: repeat-x;
 z-index: 0;
}
/* --- Technologies Section (Bento Grid) --- */
.tech-section {
	padding: 100px 0;
	background-color: #f7f7f9;
}
.tech-section .section-header {
	text-align: center;
	margin-bottom: 60px;
}
.tech-section .section-header .subtitle {
	color: #6b7280;
}
.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: #ebf4ef;
	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 #ccc;
}
.card-large {
	grid-column: span 2;
	background: #fbf0e5;
}
.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: #fff;
	padding: 8px 16px;
	border-radius: 50px;
	border: 1px solid #ccc;
	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: #fff;
}
.logo-item img {
	height: 28px;
	width: 28px;
	object-fit: contain;
}
.logo-item span {
	font-weight: 600;
	color: var(--text-dark);
	font-size: 0.9rem;
}
/* --- Slider Section (Brutalist) --- */
.slider-section {
	padding: 5vw;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff8e1;
}
.slider-grid-container {
	width: 100%;
	max-width: 1140px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto 1fr;
	border: 2px solid var(--border-color);
	transition: background-color 0.1s linear;
	border-radius: 10px;
}
.slider-section .grid-cell {
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
}
.slider-section .grid-cell:not(:last-child) {
border-bottom: 2px solid var(--border-color);
}
.slider-section .grid-cell:nth-child(odd) {
border-right: 2px solid var(--border-color);
}
.cell-header {
	grid-column: 1 / 2;
	grid-row: 1 / 2;
}
.cell-image {
	grid-column: 2 / 3;
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 0 !important;
}
.cell-nav {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
	display: flex;
	justify-content: center;
}
.cell-description {
	display: none;
}
.slide-headline {
	font-family: var(--font-display);
	font-size: 30px;
	line-height: 1;
	text-transform: uppercase;
	margin: 0;
	font-weight: 600;
	color: #000;
}
.slide-description {
	font-size: 1rem;
	max-width: 450px;
	margin-top: 1rem;
}
.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	position: absolute;
	bottom: 30px;
	width: 87%;
}
.nav-buttons {
	display: flex;
}
.nav-btn {
	width: 60px;
	height: 60px;
	background: transparent;
	border: 2px solid var(--border-color);
	border-left: none;
	cursor: pointer;
	font-size: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease;
}
.nav-btn:first-child {
	border-left: 2px solid var(--border-color);
}
.nav-btn:hover {
	background: var(--accent-color);
	color: #F5F0E8;
	border-color: var(--accent-color);
}
.slide-counter {
	font-size: 1.25rem;
	font-weight: 600;
}
.phone-mockup {
	width: 280px;
	height: 570px;
	border-radius: 20px;
}
.phone-screen {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}
.phone-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slider-grid-container.is-animating {
	animation: container-flash 0.2s linear;
}
@keyframes container-flash {
50% {
}
}
.slide-content {
	will-change: transform, opacity;
	animation: content-pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes content-pop-in {
from {
transform: translateY(20px) scale(0.98);
opacity: 0;
}
to {
	transform: translateY(0) scale(1);
	opacity: 1;
}
}
/* --- Key Facts Section --- */
.key-fact-number {
	font-size: 3rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0;
}
.key-fact-label {
	color: #777;
}
/* --- Features Section --- */
.feature-bg-circle {
	position: absolute;
	width: 400px;
	height: 400px;
	background-color: #ffede6;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
/* --- Services Section (Overlapping Grid) --- */
.services-section {
	background-color: #f8f9fa;
	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: #ffffff;
	padding: 2rem;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	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(199, 78, 78, 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: #faeeee;
	color: #C74E4E;
	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: #6a6a6e;
	line-height: 1.6;
	margin-bottom: 0;
}
/* --- Testimonials Section --- */
.testimonials {
	padding: 80px 0 90px;
	position: relative;
	background-color: #fff8e1;
}
.testimonials .header-ares-app h2 span {
	color: #C74E4E;
}
.testimonials .testimonial-item {
	text-align: center;
	border: 3px solid #ccc;
	padding: 40px;
	border-radius: 14px;
	margin-top: 50px;
	margin-right: 40px;
	background: #fff;
}
.testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: bold;
	text-align: left;
	margin: 10px 0 5px;
}
.testimonials .testimonial-item h4 {
	font-size: 14px;
	text-align: left;
	margin: 0 0 15px;
	color: rgba(33, 37, 41, 0.6);
}
.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;
}
.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: #fff;
	opacity: 1;
	border-radius: 4px;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #C74E4E;
}
/* --- FAQ Section --- */
.faq-card {
	border: none;
	border-bottom: 1px solid #e9ecef;
	border-radius: 0;
}
.faq-card .card-header {
	background-color: transparent;
	border-bottom: none;
	padding: 0;
}
.faq-card .btn-link {
	width: 100%;
	text-align: left;
	text-decoration: none;
	font-weight: 600;
	color: var(--text-dark);
	padding: 20px 0;
	position: relative;
}
.faq-card .btn-link:after {
	content: '\f078';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	right: 0;
	transition: transform 0.2s;
}
.faq-card .btn-link:not(.collapsed):after {
transform: rotate(180deg);
}
.card-body {
	padding: 0 0 22px;
}
/* --- CTA Split Section --- */
.cta-split-section {
	background-color: #f8f9fa;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.cta-split-section .shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.2;
	z-index: 0;
}
.cta-split-section .shape-1 {
	width: 350px;
	height: 350px;
	background-color: #C74E4E;
	top: 10%;
	right: -100px;
}
.cta-split-section .shape-2 {
	width: 300px;
	height: 300px;
	background-color: #C74E4E;
	bottom: 5%;
	left: -80px;
}
.cta-split-section .container {
	position: relative;
	z-index: 2;
}
.cta-split-section .section-header .section-title {
	color: #1c1c1e;
	margin-bottom: 1rem;
}
.cta-card {
	background-color: #ffffff;
	border-radius: 24px;
	padding: 2.5rem;
	height: 100%;
	border: 1px solid #e5e7eb;
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cta-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}
.cta-card .card-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	background: linear-gradient(45deg, #C74E4E, #d95858);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}
.cta-card .card-title {
	font-weight: 500;
	font-size: 1.75rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
}
.card-text {
	color: #6a6a6e;
	line-height: 1.6;
	margin-bottom: 2rem;
	flex-grow: 1;
}
.btn-primary-custom {
	background-color: #1c1c1e;
	color: #fff;
	border-radius: 50px;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.3s ease;
}
.btn-primary-custom:hover {
	background-color: #C74E4E;
}
.cta-card-diner {
	overflow: hidden;
	padding: 0;
	position: relative;
}
.cta-card-diner .phone-mockup {
	margin: 40px 0 0;
	width: 100%;
}
.cta-card-diner .phone-mockup img {
	max-width: 250px;
	filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.1));
}
.cta-card-diner .card-content {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 2.5rem;
}
.app-buttons img {
	height: 45px;
	margin: 0 0.5rem;
	transition: transform 0.3s ease;
}
.app-buttons img:hover {
	transform: scale(1.05);
}
/* --- Footer --- */
.footer-main {
	background-color: #fff;
	color: #737373;
	font-size: 14px;
}
.footer-heading {
	font-weight: 600;
	color: #252B42;
	font-size: 16px;
	margin-bottom: 20px;
}
.footer-links .nav-link {
	color: #737373;
	padding: 6px 0;
}
.social-icons a {
	font-size: 24px;
	color: #C74E4E;
	margin: 0 10px;
}
.footer-bottom {
	background-color: #212529;
	color: rgba(255, 255, 255, 0.6);
}
/* --- Animation Keyframes & Classes --- */
.animate__animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 40px, 0);
transform: translate3d(0, 40px, 0);
}
to {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 40px, 0);
transform: translate3d(0, 40px, 0);
}
to {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
}
.animate__fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

/* --- Responsive Adjustments --- */
@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;
}
 .slider-grid-container, .services-grid, .bento-grid {
grid-template-columns: 1fr;
}
 .card-large, .slider-section .grid-cell:nth-child(odd), .services-grid .service-card-new {
grid-column: span 1;
border-right: none;
margin-top: 0;
}
 .cell-image {
grid-row: 2 / 3;
padding: 0;
}
 .cell-nav {
grid-row: 3 / 4;
}
}
 @media (max-width: 767.98px) {
 .process-row::before {
display: none;
}
 .services-section .text-center-lg-start {
text-align: center !important;
}
.graphic-stat-bg-number {
font-size: 99px!important;
}
.contact-aurora-section .col-lg-3 {
margin-bottom:30px;
}
}





/* ===================================================================
   RESPONSIVE STYLES (TABLET & MOBILE)
   =================================================================== */

/* --- Medium devices (iPads, tablets, 768px and up) --- */
@media (max-width: 991.98px) {
  /* --- General Typography --- */
  h2 {
font-size: 2.8rem;
}

  /* --- Header --- */
  .navbar-nav .nav-link {
margin: 0.5rem 0;
}
  
  /* --- Hero Section --- */
  .hero-split-section {
 flex-direction: column;
 height: auto;
 min-height: auto;
}
 .panel-text {
 min-height: auto;
 padding: 4rem 1.5rem;
 text-align: center;
 order: 2; /* Text below image */
}
 .panel-text .hero-title {
 font-size: clamp(2.5rem, 12vw, 3.5rem) !important;
}
 .app-buttons {
 justify-content: center;
}
 .panel-visual {
 min-height: 70vh;
 order: 1; /* Image on top */
}

  /* --- Bento Grid (Technologies) --- */
  .bento-grid {
 grid-template-columns: 1fr;
}
 .card-large {
 grid-column: span 1;
}
  
  /* --- Brutalist Slider Section --- */
  .slider-grid-container {
 grid-template-columns: 1fr;
}
 .slider-section .grid-cell:nth-child(odd) {
 border-right: none;
display: block;
}
 .phone-screen img {
height:auto;
object-fit: inherit;
}
 .phone-mockup {
width: auto;
 height: auto;
 border-radius: 20px;
}
 .cell-header {
 padding-bottom: 1.5rem;
}
 .cell-image {
 grid-row: 2 / 3;
 padding: 2rem 0;
 border-bottom: 2px solid var(--border-color);
}
 .cell-nav {
 grid-row: 3 / 4;
 padding-top: 1.5rem;
}
 .slide-headline {
 font-size: clamp(2.2rem, 10vw, 2.8rem);
}
 .nav-wrapper {
 position: relative;
 bottom: auto;
 width: 100%;
 margin-top: 2rem;
}

  /* --- Services Grid --- */
  .services-section .text-center-lg-start {
 text-align: center !important;
 margin-bottom: 2rem;
}
 .services-grid {
 grid-template-columns: 1fr;
}

  /* --- Testimonials --- */
  .testimonials .col-lg-7, .testimonials .col-lg-5 {
 width: 100%;
 flex: 0 0 100%;
 max-width: 100%;
}
 .testimonials .righttext {
 display: none; /* Hide image on tablet */
}

  /* --- CTA Section --- */
  .cta-card {
 margin-bottom: 1.5rem;
}

  /* --- Footer --- */
  .footer-main, .footer-bottom {
 text-align: center !important;
}
 .footer-heading {
 margin-top: 1.5rem;
}
}


/* --- Small devices (iPhones, landscape phones, 767px and down) --- */
@media (max-width: 767.98px) {
 body {
 padding-top: 70px;
}
 h2 {
font-size: 2.2rem;
}

  /* --- Hero Section --- */
  .panel-text .hero-title {
 font-size: 2.5rem !important;
}
 .hero-image-track img {
 width: 200px; /* Smaller images on mobile */
 border-radius: 16px;
}

  /* --- Marquee Section --- */
  .marquee-wrapper {
 transform: rotate(-10deg) scale(1.3);
}
 .marquee-track span {
 font-size: 2rem;
}
 .content-card {
 padding: 1.5rem;
}
 .content-card p {
 font-size: 1rem;
}

  /* --- How it Works Section --- */
  .process-row::before {
 display: none; /* Ensure connecting line is hidden */
}
  
  /* --- Slider Section --- */
  .slider-section {
 padding: 1.5rem;
}
 .slider-section .grid-cell {
 padding: 1.5rem;
}
 .phone-mockup {
 width: 240px;
}

  /* --- Key Facts Section --- */
  .key-fact-number {
font-size: 2.2rem;
}
 .key-fact-label {
font-size:11px;
}
 #key-facts-section .col-md-4 {
 margin-bottom: 0px;
}
 #key-facts-section {
padding-bottom:0px!important;
}
 .how-it-works-section .img-fluid {
margin-bottom:60px;
}
  /* --- Technologies Section --- */
  .tech-section {
padding: 3rem 0;
}
 .bento-card {
padding: 1.5rem;
}

  /* --- Testimonials --- */
  .testimonials {
padding: 3rem 0;
}
 .testimonials .testimonial-item {
 padding: 1.5rem;
 margin-right: 0;
}

  /* --- CTA Section --- */
  .cta-split-section {
padding: 3rem 0;
}
 .cta-split-section .shape {
display: none;
}
 .cta-card-diner .phone-mockup img {
max-width: 180px;
}
 .cta-card-diner .card-content {
padding: 1.5rem;
}
 .hero-image-marquee {
height: 200px;
padding:0px 20px
}
 .slider-grid-container {
display: inline-block!important;
}
 .btn-app-store {
display: inline-flex;
 align-items: center;
 gap: 0.75rem;
 padding: 10px 11px;
 background-color: #ffffff;
 border: 1px solid #e5e7eb;
 border-radius: 50px;
 color: var(--text-dark);
 text-decoration: none;
 font-weight: 600;
 font-size: 15px;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
 transition: all 0.3s ease;
}
 .how-it-works-section {
padding-bottom:0px;
}
 .feature-bg-circle {
display:none
}
}
.features-infinite-section .section-header {
	max-width:100%;
	margin-bottom:80px!important;
}
/* === INFINITE SLIDER SECTION === */
        .features-infinite-section {
	background-color: #111319; /* A deep, dark background */
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.features-infinite-section .section-header .section-title {
	color: #ffffff;
	font-size: 2.5rem;
	font-weight: 600;
}
.features-infinite-section .section-header p {
	color: #a0a8b7;
}
/* --- Swiper Wrapper & Faded Edges --- */
        .infinite-slider-wrapper {
	position: relative;
}
.infinite-slider-wrapper .fade-overlay {
	position: absolute;
	top: 0;
	height: 100%;
	width: 150px;
	z-index: 2;
	pointer-events: none; /* Allows clicking/dragging through the overlay */
}
.fade-overlay.left {
	left: 0;
	background: linear-gradient(to right, #111319, transparent);
}
.fade-overlay.right {
	right: 0;
	background: linear-gradient(to left, #111319, transparent);
}
/* --- Swiper Main Container --- */
        .features-infinite-slider {
	width: 100%;
	overflow: visible; /* Allows cards to pop out */
}
.features-infinite-slider .swiper-wrapper {
	transition-timing-function: linear !important; /* CRITICAL for smooth continuous scroll */
}
.features-infinite-slider .swiper-slide {
	width: 320px; /* Set a fixed width for each card */
	transition: transform 0.4s ease, filter 0.4s ease;
	filter: brightness(0.8);
}
/* --- Hover Interactions --- */
        .features-infinite-slider:hover .swiper-wrapper {
/* This is handled by Swiper's JS for better control */
        }
.features-infinite-slider .swiper-slide:hover {
	transform: scale(1.05) translateY(-10px);
	filter: brightness(1);
	z-index: 10;
}
/* --- Feature Card Styling (Adapted for dark mode) --- */
        .feature-card {
	background-color: #1a1d2e;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	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: #2a2d3e;
}
.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: #C74E4E;
	margin-bottom: 0.5rem;
}
.feature-content p {
	font-size: 0.9rem;
	color: #a0a8b7;
	line-height: 1.5;
	margin-bottom: 0;
}
 @media (max-width: 767px) {
 .infinite-slider-wrapper .fade-overlay {
 width:0px;
}
}
.key-facts-section-graphic {
	background-color: #111319;
}
.key-facts-section-graphic .section-subtitle {
	color: #6b7280;
}
.key-facts-section-graphic .section-title {
	color: #ffffff;
}
.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); /* Responsive font size */
	font-weight: 900;
	color: rgba(199, 78, 78, 0.5);
	line-height: 1;
	z-index: 1;
	font-size: 150px;
}
.graphic-stat-label {
	position: relative;
	z-index: 2;
	font-size: 1.25rem;
	font-weight: 600;
	color: #ffffff;
	max-width: 200px;
	margin: 0 auto;
}
.key-facts-section-cards {
	background-color: #f8f9fa;
}
.stat-card {
	background: linear-gradient(145deg, #ffffff, #f7f9fc);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	border: 1px solid #e9ecef;
	box-shadow: 0 8px 25px -10px rgba(0, 0, 0, 0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}
.stat-card .card-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	background-color: #faeeee; /* Light red background for icon */
	color: #C74E4E; /* Brand red icon color */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.25rem;
}
.card-number {
	font-size: 3rem;
	font-weight: 600;
	color: #202020;
	margin-bottom: 0.5rem;
}
.card-label {
	color: #6c757d;
	font-size: 1rem;
	margin-bottom: 0;
}
img {
	max-width:100%;
	height:auto
}
.how-it-works-tabs {
	background-color: #f8f9fa;
	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: #fff;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
	text-align: left;
	cursor: pointer;
}
.how-it-works-tabs .nav-pills .nav-link.active {
	background-color: #faeeee; /* Light Red */
	border-color: #C74E4E;
	box-shadow: 0 8px 20px -10px rgba(199, 78, 78, 0.4);
}
.how-it-works-tabs .nav-pills .nav-link .step-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #C74E4E;
}
.how-it-works-tabs .nav-pills .nav-link h4 {
	font-weight: 600;
	color: #202020;
}
.how-it-works-tabs .nav-pills .nav-link p {
	color: #6c757d;
	margin-bottom: 0;
}
/* Style for the image transitions */
        .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;
}
.section-header {
	max-width: 700px;
	margin: 0 auto 4rem auto;
}
.section-header .section-title {
	font-weight: 600;
	color: var(--text-dark);
	font-size: 2.75rem;
}
/* Main Grid for Steps */
        .process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
/* Individual Step Styling */
        .process-step {
	position: relative;
	padding-top: 40px; /* Space for the number to overlap */
}
.step-number-bg {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 120px;
	font-weight: 800;
	color: rgba(0, 0, 0, 0.04);
	line-height: 1;
	z-index: 1;
	user-select: none; /* Make the number unselectable */
}
.step-content {
	position: relative;
	z-index: 2; /* Ensures content is above the number */
	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(--accent-color);
 margin-right: 12px;
 border-radius: 2px;
}
.step-content p {
	color: var(--text-light);
	line-height: 1.6;
}
        
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
 .process-grid {
 grid-template-columns: 1fr;
}
 .section-header .section-title {
 font-size: 2.25rem;
}
}
/* Custom class for the contact icons */
.header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #e5e7eb;
	color: #6c757d; /* A neutral gray for the icon */
	font-size: 1.2rem;
	text-decoration: none;
	margin-right: 1rem;
	transition: all 0.3s ease;
}
.header-icon:hover {
	background-color: #C74E4E; /* Your brand color */
	color: #fff;
	border-color: #C74E4E;
	transform: translateY(-2px);
}
/* Styling for the new Contact Sales button */
.contact-sales-btn {
	font-weight: 600;
	padding: 0.6rem 1.25rem;
	border-radius: 50px; /* Pill shape */
	box-shadow: 0 4px 15px rgba(199, 78, 78, 0.2);
	transition: all 0.3s ease;
}
.contact-sales-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(199, 78, 78, 0.3);
}

/* On mobile, when the navbar collapses, add some space */
@media (max-width: 991.98px) {
.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;
 border-radius: 50%;
 border: 1px solid #e5e7eb;
 color: #6c757d;
 font-size: 13px;
 text-decoration: none;
 margin-right: 9px;
}
}
.vendor-seaction {
	background: #2a2d3e;
}
.vendor-seaction .feature-image {
	background-color: #464a61;
}
/* =======================================
           DESIGN 6: FLOATING AURORA CARDS
        ======================================= */
        .contact-aurora-section {
	background-color: #111319;
	position: relative;
	overflow: hidden;
	padding:60px 0px
}
.contact-aurora-section .section-title, .contact-aurora-section .text-secondary {
	color: #fff !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(4, 6, 119, 0.4);
top: -150px;
left: -200px;
}
 .aurora-bg::after {
width: 400px;
height: 400px;
background: rgba(255, 195, 15, 0.3);
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: #fff;
	margin-bottom: 1.5rem;
}
.aurora-card h5 {
	color: #fff;
	font-weight: 600;
}
.aurora-card a, .aurora-card p {
	color: #D1D5DB;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}
.aurora-card .qr-code {
	max-width: 150px;
}
.faq-modern-section {
	background-color: #f8f9fa;
	padding:80px 0px
}
.faq-modern-section .card {
	background-color: #fff;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	margin-bottom: 1rem;
	box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease; position: static; width:100%;
}
.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: #202020;
	padding: 1.5rem;
	position: relative;
}
 .faq-modern-section .btn-link:not(.collapsed) {
 background-color: #faeeee;
 color: #C74E4E;
 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: #6c757d;
}
.navbar-brand img {
	width: 48%;
	margin: 7px 0px 0px 0px;
}
#mainNavbar {
	float:right;
	margin-top:10px;
	padding-top:10px;
	padding-bottom:10px;
}
/* --- Base Styles --- */
        .hero-section {
	font-family: 'Inter', sans-serif;
	background-color: #FEE2E2; /* Light Red */
	color: #1F2937;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 4rem 1rem;
	overflow: hidden;
}
.text-content {
	text-align: center;
	max-width: 1200px;
	margin-bottom: 3rem;
	margin-bottom:80px;
}
.hero-subtitle {
	font-size: 1rem;
	font-weight: 500;
	color: #ff3131;
	margin-bottom: 1rem;
}
.hero-title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}
.hero-description {
	font-size: 1.125rem;
	color: #4B5563;
	line-height: 1.6;
	margin: 0 auto 2.5rem;
	max-width: 600px;
}
/* --- App Buttons --- */
        .app-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
}
.btn-app-store {
	background-color: #ff3131;
	border: 1px solid #ff3131;
	color: #FFFFFF;
	padding: 12px 24px;
	border-radius: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 500;
	transition: all 0.3s ease;
}
.btn-app-store:hover {
	background-color: #e02b2b;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 20px rgba(255, 49, 49, 0.2);
}
.btn-app-store i {
	font-size: 1.5rem;
}
/* --- Card Grid --- */
        .card-grid-container {
	width: 100%;
	max-width: 1000px;
	position: relative;
	height: 350px;
}
.card-grid {
	position: absolute;
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	margin:30px 0px 40px 0px;
}
.card-grid-container:hover {
	transform: scale(1.05);
}
.card {
	position: absolute;
	width: 240px;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	background:none!important;
	border:0px!important;
}
.card img {
	width: 100%;
	display: block;
}

        /* Fan out on hover */
        .card-grid-container:hover .card:nth-child(1) {
transform: rotate(-15deg) translateX(-150%);
}
 .card-grid-container:hover .card:nth-child(2) {
transform: rotate(-7.5deg) translateX(-75%);
}
 .card-grid-container:hover .card:nth-child(3) {
transform: rotate(0deg) translateX(0) translateY(-20px) scale(1.1);
z-index: 10;
}
 .card-grid-container:hover .card:nth-child(4) {
transform: rotate(7.5deg) translateX(75%);
}
 .card-grid-container:hover .card:nth-child(5) {
transform: rotate(15deg) translateX(150%);
}



/* --- Mobile (Small Screens) --- */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 3rem;
        padding-bottom: 6rem; /* More space at the bottom for the stack */
    }

    .card-grid-container {
        height: 250px; /* Adjust height for the stacked view */

        margin-top: 2rem;
    }

    .card {
        width: 180px; /* Smaller cards for mobile */
        /* Center the cards to prepare for stacking */
        left: 50%;
        top: 0;
        transform-origin: center center;
    }

    /*
     * NEW STACKED LAYOUT FOR MOBILE 
     * This overrides the fan-out animation completely.
     */
	 /*
    .card:nth-child(1) { transform: translateX(-50%) rotate(-8deg) translateY(0px); }
    .card:nth-child(2) { transform: translateX(-50%) rotate(-4deg) translateY(20px); }
    .card:nth-child(3) { transform: translateX(-50%) rotate(0deg) translateY(40px) scale(1.05); z-index: 10; }
    .card:nth-child(4) { transform: translateX(-50%) rotate(4deg) translateY(60px); }
    .card:nth-child(5) { transform: translateX(-50%) rotate(8deg) translateY(80px); }
*/
    /* Disable the hover effect on mobile */
    .card-grid-container:hover {
        transform: none; /* No scaling */
    }
    .card-grid-container:hover .card:nth-child(1) { transform: translateX(-50%) rotate(-8deg) translateY(0px); }
    .card-grid-container:hover .card:nth-child(2) { transform: translateX(-50%) rotate(-4deg) translateY(20px); }
    .card-grid-container:hover .card:nth-child(3) { transform: translateX(-50%) rotate(0deg) translateY(40px) scale(1.05); }
    .card-grid-container:hover .card:nth-child(4) { transform: translateX(-50%) rotate(4deg) translateY(60px); }
    .card-grid-container:hover .card:nth-child(5) { transform: translateX(-50%) rotate(8deg) translateY(80px); }
	.text-content{ margin-bottom:0px;}
}


















      @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap');
        .hero-section-scroll {
            font-family: 'Inter', sans-serif;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }
        .panel-text-scroll {
            background-color: #1d2939;
            color: #FFFFFF;
            display: flex;
           
            justify-content: center;
            padding: 4rem 2rem;
        }
        .text-content-scroll { max-width: 500px; }
        .hero-subtitle-scroll { font-size: 1rem; font-weight: 500; color: #fff; margin-bottom: 1rem; }
        .hero-title-scroll { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
        .hero-description-scroll { font-size: 1.125rem; color: #E5E7EB; line-height: 1.6; margin-bottom: 2.5rem; }
        .app-buttons-scroll { display: flex; gap: 1rem; }
        .btn-app-store-scroll {
            background-color: #C74E4E; border: 1px solid #C74E4E; color: #FFFFFF;
            padding: 12px 24px; border-radius: 8px; text-decoration: none;
            display: inline-flex; align-items: center; gap: 0.75rem; font-weight: 500;
            transition: all 0.3s ease;
        }
        .btn-app-store-scroll:hover { background-color: #e02b2b; transform: translateY(-3px); }
        .btn-app-store-scroll i { font-size: 1.5rem; }
        .panel-visual-scroll {
            background-color: #F9FAFB;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .hero-image-marquee-scroll {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            transform: rotate(12deg) scale(1.2);
        }
        @keyframes scroll-horizontal { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        .hero-image-track-scroll {
            display: flex;
            gap: 1.5rem;
            animation: scroll-horizontal 40s linear infinite;
            width: max-content;
        }
        .hero-image-track-scroll img {
            width: 135px;
           
        }
        @media (max-width: 992px) {
            .hero-section-scroll { grid-template-columns: 1fr; }
            .panel-visual-scroll { min-height: 50vh; order: 1; }
            .panel-text-scroll { order: 2; text-align: center; }
          
		  }
		  
		  
		  a:hover{ color:#fff!important}
		  
		  .tab-content img{ width:330px;}
		  
		  
		  
		  
		  
		  
		  
		  
		  
		  
		  .feature-section {
    background-color: #F9FAFB; /* A very light gray for a clean look */
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight:600;
    line-height: 1.2;
    color: #111827; /* Dark text for high contrast */
}

.text-secondary {
    font-size: 1.125rem;
    color: #4B5569; /* Softer gray for descriptions */
   
}

/* --- Visuals & Floating Cards --- */
.phone-cards-container {
    position: relative;
    height: 500px; /* Container to position the cards within */
    min-width: 100%;margin-top: 50px;
}

.feature-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    background-image: linear-gradient(45deg, #ff3131, #ffd5d5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px); /* Creates the soft glow effect */
    opacity: 0.2;
}

.phone-card {
    position: absolute;
    width: 250px; /* Adjust size of phone mockups */
    border-radius: 24px;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.phone-card img {
    width: 100%;
    display: block;
}

.phone-card:hover {
    transform: translateY(-10px) scale(1.03);
    z-index: 10;
}

/* Positioning for each card to create depth */
.phone-card.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-10deg);
}
.phone-card.card-1:hover {
    transform: translateY(-10px) scale(1.03) rotate(-10deg);
}

.phone-card.card-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.phone-card.card-2:hover {
    transform: translateY(-10px) scale(1.03) translate(-50%, -50%);
}


.phone-card.card-3 {
    bottom: 0;
    right: 0;
    transform: rotate(10deg);
}
.phone-card.card-3:hover {
    transform: translateY(-10px) scale(1.03) rotate(10deg);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .feature-section {
        text-align: center;
    }
    .text-secondary {
        margin: 0 auto 2rem auto;
    }
    .phone-cards-container {
        height: 450px; /* Adjust height for mobile */
    }
    .phone-card {
        width: 200px; /* Smaller cards on mobile */
    }
}

@media (max-width: 576px) {
    .phone-cards-container {
        height: 400px;
    }
    .phone-card {
        width: 160px;
    }
    .feature-bg-circle {
        width: 300px;
        height: 300px;
    }
}