/* font-family */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* import files */
@import url("../css/auth.css");
@import url("../css/header_footer.css");

@font-face {
	font-family: "Outfit";
	src: url("../font/Outfit-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

* {
	font-family: var(--Outfit);
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg-dark: #0a0a0d;
	--bg-card: rgba(0, 0, 0, 0.35);
	--border-card: #22252e;
	--accent-gold: #d4af37;
	--text-white: #ffffff;
	--text-gray: #a9afb8;
	--Outfit: 'Outfit', sans-serif;
}

body {
	font-family: "Outfit', sans-serif";
	font-family: "Outfit', sans-serif";
	font-weight: 400;
	line-height: 1.5;
	background-color: var(--bg-dark);
	color: var(--text-white);
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

a,
a:hover, .submit_btn:hover {
	text-decoration: none;
	-webkit-transition: ease-in-out 0.5s;
	-moz-transition: ease-in-out 0.5s;
	-o-transition: ease-in-out 0.5s;
	transition: ease-in-out 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.3;
	font-family: var(--racing);
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* hero section css start */
main {
	padding: 98px 0 0 0;
}

.hero-section {
	padding: 62px 0;
	background-image: url(../images/hero-banner.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-section .row,
.play-store-section .row {
	align-items: center;
	justify-content: space-between;
}

.sub-heading {
	font-size: 28px;
	color: #D4AF37;
}

.hero-title,
.play-store-title {
	font-size: 52px;
	font-weight: 600;
}

.hero-subtitle,
.play-store-text {
	font-size: 22px;
	line-height: 41px;
	color: #A9AFB8;
}

.hero-btn {
	background: #D4AF37;
	color: #0A0A0D;
	font-size: 18px;
	border-radius: 20px;
	padding: 10.5px 40px;
	display: block;
	max-width: max-content;
	border: 1px solid #D4AF37;
	transition: all 0.3s ease;
}

.hero-btn:hover {
	background-color: transparent;
	color: #fff;
	border: 1px solid #fff;
}

.hero-image {
	max-width: 492px;
	margin-left: auto;
}

.hero-image img {
	width: 100%;
	height: auto;
}

/* hero section css end */

/* Features section css start */

.key-features-section {
	position: relative;
	z-index: 1;
}

.round-bg::after {
	content: "";
	position: absolute;
	top: 70px;
	left: 0;
	width: 536px;
	height: 749px;
	background-image: url("../images/Ellipse-left.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

.round-bg::before {
	content: "";
	position: absolute;
	top: 70px;
	right: 0;
	width: 536px;
	height: 749px;
	background-image: url("../images/Ellipse-right.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

.space-tb {
	padding: 100px 0;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
}

.section-title {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 16px;
}

.section-subtitle {
	color: #A9AFB8;
	font-size: 22px;
	margin-bottom: 96px;
}

.feature-card {
	background: #00000059;
	border-radius: 20px;
	padding: 30px 20px;
	transition: all 0.3s ease;
	border: 1px solid #22252E;
	max-height: 196px;
}

.feature-card:hover {
	box-shadow: 0 0 25px rgba(255, 204, 0, 0.15);
	border-color: rgba(255, 204, 0, 0.2);
}

.icon-circle {
	width: 95px;
	height: 95px;
	margin: 0 auto;
	background: #D4AF37;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -77px;
}

.key-features-section .row {
	row-gap: 77px;
}

.feature-title {
	font-weight: 500;
	margin-bottom: 6px;
	font-size: 22px;
}

.feature-text {
	color: #A9AFB8;
	line-height: 25px;
	font-size: 16px;
	font-weight: 300;
}

/* Features section css end */


/* play store section css start */

.play-store-section {
	padding-bottom: 100px;
}

.play-store-image img {
	width: 100%;
	height: auto;
	max-width: 713px;
}

.play-store-actions {
	display: flex;
	gap: 20px;
}

.play-store-btn {
	display: block;
}

.play-store-btn img {
	width: 100%;
	height: auto;
}

/* play store section css end */


section.space-Y {
	padding: 100px 0;
}

.custom-top-heading {
	text-align: center;
	margin-bottom: 50px;
}

.heading-h1 {
	font-size: 60px;
	line-height: 81px;
	margin-bottom: 13px;
}

.page-info-main h5 {
	font-size: 24px;
	margin-bottom: 20px;
}

.page-info-main p {
	color: #A9AFB8;
	line-height: 25px;
	font-size: 16px;
	font-weight: 300;
}

/*  */

/* contact page css start */


.contact_blog {
	padding: 40px 0 50px;
}

.contct_form {
	padding: 30px;
}

.submit_btn:hover {
	background: transparent;
	color: #fff;
}

.error {
	display: block;
	color: red;
}

.arch_img img {
	width: 100%;
	height: 250px;
	object-fit: contain;
}

.modal_bx .modal-content {
	border: 0;
	background: #FFFFFF08;
	padding: 30px;
}

.modal_bx .modal-header {
	padding: 0;
	border: 0;
}

.modal_bx .modal-header h5 {
	font-weight: 600;
	font-size: 36px;
	color: #fff;
	letter-spacing: 0px;
	margin: 0 auto 30px;
	text-align: center;
}

.modal-backdrop.show {
	background: #000;
	opacity: 1;
}

.modal_bx .modal-body {
	padding: 0;
}

.modal_bx .form-group {
	position: relative;
	margin-bottom: 20px;
}

.modal_bx label {
	font-weight: 400;
	font-size: 15px;
	display: block;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 10px;

}

.modal_bx .form-control {
	border: 1px solid #FFFFFF1A;
	background: #FFFFFF0D;
	border-radius: 10px;
	padding: 10px 18px;
	font-weight: 300;
	font-size: 14px;
	color: #fff;
}

.modal_bx .form-control::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.error {
	margin: 5px 0 0;
	color: red;
	display: none;
	font-size: 12px;
}

.submit_btn {
	border: 2px solid #fff;
	padding: 10px 30px;
	background: #D4AF37;
	font-weight: 500;
	font-size: 16px;
	text-align: center;
	color: #010101;
	width: fit-content;
	margin: 10px auto 0;
}

/* contact page css end */