* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Outfit", sans-serif;
	color: #111;
	line-height: 1.6;
	min-height: 100vh;
}

.page-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	width: 100%;
}

/* Header Styles */
.main-header {
	background-color: transparent;
	box-shadow: none;
	padding: 15px 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: background-color 0.3s ease;
}

.main-header .logo-text {
	font-family: "Epilogue", sans-serif;
	font-weight: 600;
	font-size: xx-large;
	color: #ffffff;
}

.main-header .container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}

.logo {
	display: flex;
	align-items: center;
	position: relative;
	padding: 5px 0;
	transition: transform 0.3s ease;
	margin: 0;
}

.logo-img {
	height: 60px;
	width: auto;
	transition: transform 0.3s ease;
}

.logo:hover .logo-img {
	transform: translateY(-2px);
}

.social-icons {
	display: flex;
	gap: 15px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.social-icons-left {
	left: 0;
}

.social-icons-right {
	right: 0;
}

.social-icon {
	color: #6a5acd;
	font-size: 18px;
	transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
	color: #9370db;
	transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, #2c3e50 0%, #8e44ad 100%);
	color: white;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 250px 0 150px;
	position: relative;
	overflow: hidden;
}

/* Hero image removed */

.fade-in-up {
	animation: fadeInUp 0.8s ease-out forwards;
	opacity: 0;
	transform: translateY(20px);
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23ffffff" fill-opacity="0.03" d="M 0 50 L 50 0 L 100 50 L 50 100 Z"></path></svg>');
	opacity: 0.5;
}

.hero-content {
	text-align: center;
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.hero-title {
	font-family: "Epilogue", sans-serif;
	font-size: 6.5rem;
	margin-bottom: 35px;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -2px;
}

.highlight {
	position: relative;
	color: #ffffff;
	font-weight: 700;
}

.hero-tagline {
	font-size: 2.2rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 900px;
	margin: 0 auto 60px;
	font-weight: 400;
}

.cta-button-container {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 60px;
}

.cta-button {
	background: #ffffff;
	color: #8e44ad;
	padding: 20px 45px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 1.5rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.secondary-button {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	padding: 20px 45px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 1.5rem;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

.secondary-button:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-3px);
}

.countdown-container {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 35px 40px;
	backdrop-filter: blur(10px);
	max-width: 650px;
	margin: 0 auto;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.countdown-title {
	text-align: center;
	margin-bottom: 20px;
	font-size: 1.5rem;
	font-weight: 600;
	color: white;
}

.countdown {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.countdown-item {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 20px;
	min-width: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.countdown-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.countdown-item span:first-child {
	font-size: 2.5rem;
	font-weight: 700;
	color: #8e44ad;
}

.countdown-label {
	font-size: 0.9rem;
	color: #666;
	margin-top: 5px;
	font-weight: 500;
}

/* Features Section */
.features-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.section-title {
	font-family: "Epilogue", sans-serif;
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(135deg, #2c3e50 0%, #8e44ad 100%);
	border-radius: 2px;
}

.features-container {
	width: 100%;
	position: relative;
	z-index: 1;
	padding: 20px 0;
	/* Journey timeline styles */
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Timeline center line */
.features-container::before {
	content: '';
	position: absolute;
	width: 4px;
	background: linear-gradient(135deg, #2c3e50 0%, #8e44ad 100%);
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -2px;
	border-radius: 2px;
	z-index: -1;
}

.feature-block {
	display: flex;
	width: 100%;
	position: relative;
	margin-bottom: 60px;
	overflow: visible;
}

/* Alternating layout for desktop */
.feature-block {
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	padding-left: 50%;
	padding-right: 0;
}

.feature-block.reverse {
	justify-content: flex-start;
	padding-right: 50%;
	padding-left: 0;
}

/* Timeline dots */
.feature-block::before {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #8e44ad;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	box-shadow: 0 0 0 4px rgba(142, 68, 173, 0.2);
}

.feature-image {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	position: relative;
}

.feature-img {
	max-width: 80%;
	height: auto;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-image img {
	max-width: 100%;
	height: auto;
	transition: all 0.5s ease;
	background-color: transparent;
}

.feature-block:hover .feature-image img {
	transform: scale(1.05);
}

.feature-content {
	flex: 1;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
	max-width: 90%;
	margin: 0 auto;
}

.feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2c3e50 0%, #8e44ad 100%);
	color: white;
	margin-bottom: 15px;
	box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.feature-icon i {
	font-size: 24px;
}

.feature-content h3 {
	font-family: "Epilogue", sans-serif;
	font-size: 2.5rem;
	margin-bottom: 15px;
	letter-spacing: -0.02em;
	font-weight: 700;
	color: #171717;
	line-height: 1.2;
}

.feature-content p {
	font-size: 1.1rem;
	font-weight: 400;
	color: #333;
	line-height: 1.5;
	margin-bottom: 20px;
}

.feature-link {
	display: inline-flex;
	align-items: center;
	color: #8e44ad;
	font-weight: 600;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
}

.feature-link i {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.feature-link:hover {
	color: #6a5acd;
	transform: translateY(-3px);
}

.feature-link:hover i {
	transform: translateX(5px);
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 8px 20px rgba(142, 68, 173, 0.5);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
	}
}

/* Footer Styles */
.main-footer {
	clear: both;
	background: linear-gradient(135deg, #2c3e50 0%, #8e44ad 100%);
	color: white;
	padding: 60px 0;
	margin-top: auto;
	position: relative;
	overflow: hidden;
}

.main-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
	background-size: cover;
	background-position: bottom;
	opacity: 0.7;
	z-index: 1;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	position: relative;
	z-index: 2;
}

.footer-content p {
	font-size: 0.95rem;
}

.footer-social {
	display: flex;
	gap: 15px;
}

.main-footer .social-icon {
	color: white;
	font-size: 18px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: 0.8;
}

.main-footer .social-icon:hover {
	transform: translateY(-3px) scale(1.1);
	opacity: 1;
}

.main-footer a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s ease, text-shadow 0.3s ease;
	position: relative;
}

.main-footer a:hover {
	opacity: 1;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Responsive styles */
@media (max-width: 992px) {
	.hero-title {
		font-size: 5rem;
	}

	.hero-tagline {
		font-size: 1.8rem;
	}

	.hero-section {
		padding: 200px 0 120px;
	}

	.section-title {
		font-size: 2.2rem;
	}

	.feature-icon-container {
		width: 70px;
		height: 70px;
	}
}

@media (max-width: 768px) {
	.feature-icon {
		width: 50px;
		height: 50px;
	}

	.feature-icon i {
		font-size: 20px;
	}

	.logo-img {
		height: 50px;
	}

	.hero-title {
		font-size: 4rem;
	}

	.hero-section {
		padding: 180px 0 100px;
	}

	.countdown-container {
		padding: 25px 20px;
		max-width: 90%;
	}

	.countdown {
		flex-wrap: wrap;
	}

	.countdown-item {
		min-width: 80px;
		padding: 15px;
	}

	.countdown-item span:first-child {
		font-size: 2rem;
	}

	.cta-button-container {
		flex-direction: column;
		gap: 15px;
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}

	.cta-button,
	.secondary-button {
		width: 100%;
		text-align: center;
	}

	.features-section {
		padding: 50px 0;
	}

	/* Timeline adjustments for mobile */
	.features-container::before {
		left: 30px;
		margin-left: 0;
	}

	.feature-block,
	.feature-block.reverse {
		flex-direction: column;
		padding: 0 0 30px 60px;
		margin-bottom: 40px;
		justify-content: flex-start;
	}

	.feature-block::before {
		left: 30px;
		transform: none;
	}

	.feature-image {
		width: 100%;
		min-height: auto;
		padding: 10px;
		margin-bottom: 15px;
	}

	.feature-image img {
		max-width: 100%;
		background-color: transparent;
	}

	.feature-content {
		padding: 20px;
		text-align: left;
		align-items: flex-start;
		width: 100%;
		max-width: 100%;
	}

	.feature-content h3 {
		font-size: 1.8rem;
		margin-bottom: 15px;
	}

	.feature-content p {
		font-size: 1rem;
		margin-bottom: 15px;
	}

	.footer-content {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.feature-icon {
		width: 40px;
		height: 40px;
	}

	.feature-icon i {
		font-size: 16px;
	}

	.container {
		padding: 0 20px;
	}

	.main-header .container {
		flex-direction: row;
		justify-content: center;
		gap: 0;
	}

	.logo-img {
		height: 45px;
	}

	.hero-title {
		font-size: 3rem;
	}

	.hero-tagline {
		font-size: 1.4rem;
	}

	.hero-section {
		padding: 150px 0 80px;
	}

	.cta-button, .secondary-button {
		padding: 15px 30px;
		font-size: 1.2rem;
	}

	.section-title {
		font-size: 1.8rem;
		margin-bottom: 40px;
	}

	.countdown-title {
		font-size: 1.3rem;
	}

	.countdown {
		gap: 10px;
	}

	.countdown-item {
		min-width: 70px;
		padding: 10px;
	}

	.countdown-item span:first-child {
		font-size: 1.8rem;
	}

	/* Further timeline adjustments for smaller screens */
	.features-container::before {
		left: 20px;
	}

	.feature-block,
	.feature-block.reverse {
		padding: 0 0 30px 45px;
	}

	.feature-block::before {
		left: 20px;
		width: 20px;
		height: 20px;
	}

	.feature-content {
		padding: 15px;
	}

	.feature-content h3 {
		font-size: 1.5rem;
		margin-bottom: 10px;
	}

	.feature-content p {
		font-size: 0.95rem;
		margin-bottom: 10px;
	}

	.feature-link {
		font-size: 1rem;
	}
}

/* App Store Button Styling */
.app-store-button {
	display: inline-block; /* Allows setting width/height */
	transition: transform 0.3s ease; /* Add smooth hover effect */
}

.app-store-button img {
	width: 200px; /* Adjust size as needed */
	height: auto; /* Maintain aspect ratio */
	display: block; /* Prevents extra space below image */
}

.app-store-button:hover {
	transform: scale(1.05); /* Slight grow effect on hover */
}
/* End App Store Button Styling */
