* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
	user-select: none;
	-webkit-user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	scroll-behavior: smooth;
	line-height: 1.5;
}

:root {
	--color-dark: #1c2027;
	--color-bg: #F8FAFC;
	--color-text: #333333;
	--color-hig: #4aa3c8;

	--color-gradient: linear-gradient(to right, #0093D9, #8BDAFF, #0093D9);
}

::-webkit-scrollbar {
	width: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

a {
	text-decoration: none;
	color: #333333;
}
html {
	scroll-behavior: smooth;
}
body {
	background-color: #F8FAFC;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	overflow-x: hidden;
	width: 100vw;
	color: #333333;
}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

nav {
	z-index: 1000;
	width: 100vw;
	overflow: hidden;
}
.bot_nav {
	position: fixed;
	bottom: 1.5rem;
	width: 95vw;
	height: fit-content;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1000;
}

.bot_nav .conatiner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: rgba(173, 216, 230, 0.5);
	backdrop-filter: blur(10px);
	/* Strong blur effect */
	-webkit-backdrop-filter: blur(10px);
	/* Safari support */

	box-shadow: inset 0 0 1rem rgba(0, 0, 0, 0.05),
		0 0 24px rgba(0, 0, 0, 0.15);
	padding: 0.5rem;
	border-radius: 5rem;
}

.bot_nav .nav_btns {
	display: grid;
}

.bot_nav .nav_btns i {
	font-size: 1.5rem;
	margin: auto;
	color: rgba(0, 0, 0, 0.8);
}

.bot_nav .nav_btns span {
	font-size: 0.7rem;
	text-align: center;
	font-weight: 300;
	letter-spacing: 0.05rem;
	margin-top: -0.25rem;
}

.bot_nav .nav_btns.active {
	background: #1c2027;
	border-radius: 5rem;
	color: rgb(191, 233, 247);
}

.bot_nav .nav_btns.active i {
	color: rgb(191, 233, 247);
}

.bot_nav .nav_btns.active span {
	font-weight: 700;
}

.top_banner {
	width: 100vw;
	position: relative;
}

.top_banner .b_img {
	position: relative;
	width: 100%;
}

.top_banner .b_img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,
			rgba(173, 216, 230, 0.85) 0%,
			/* #F8FAFC with 0.5 opacity on top */
			rgba(173, 216, 230, 0.85) 65%,
			/* Fully transparent middle */
			#F8FAFC 100%
			/* Solid #F8FAFC at bottom */
		);
	pointer-events: none;
}

.top_banner .b_img img {
	width: 100%;
	max-height: 550px;
}


.top_banner .content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	padding: 0 1rem;
	padding-top: 1rem;
}
.top_banner .content .logo {
	margin-bottom: 1rem;
	margin-top: 0.5rem;
}
.top_banner .content .tag {
	width: fit-content;
	padding: 0.25rem 0.75rem;
	background: var(--color-bg);
	border-radius: 2rem;
	color: #4aa3c8;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.05rem;
}

.top_banner .content .main {
	margin: 0.75rem 0;
	font-size: 2rem;
	color: var(--color-bg);
	font-weight: 900;
	letter-spacing: 1px;
	line-height: 1.25;
}

.top_banner .content .sub {
	letter-spacing: 0.05rem;
	font-weight: 500;
	line-height: 1.5;
	font-size: 0.9rem;
	color: var(--color-dark);
}

@media (max-width: 389px) {
    .top_banner .b_img img {
		max-height: 575px;
	}
	.top_banner .content .main {
		font-size: 1.9rem;
	}

}

.services_hpg {
	width: 96vw;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4.5vw;
	z-index: 10;
	transform: translateY(-8.5rem);
	margin-bottom: -6rem;
	overflow: visible;
}

.services_hpg article {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: auto;
	width: 29vw;
	height: 29vw;
	background: rgba(173, 216, 230, 0.5);
	backdrop-filter: blur(10px);
	/* Strong blur effect */
	-webkit-backdrop-filter: blur(10px);
	/* Safari support */
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	position: relative;

	color: var(--color-bg);
}
.services_hpg article.hr {
	background-image: url('assets/gallery/hr.jpeg');
}
.services_hpg article.pc_build {
	background-image: url('assets/gallery/pc_build.jpeg');
}
.services_hpg article.sem_project {
	background-image: url('assets/gallery/sem_projects.jpeg');
}
.services_hpg article >* {
	z-index: 100;
}
.services_hpg article .blurer {
	position: absolute;
	background: rgba(133, 204, 228, 0.8);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	border-radius: 1rem;
}

.services_hpg article i {
	font-size: 12vw;
	opacity: 0.9;
}

.services_hpg article span {
	font-size: 0.8rem;
	letter-spacing: 2px;
	font-weight: 900;
	text-align: center;
	margin-top: -0.4rem;
	line-height: 1.25;
}

.ch_best {
	width: 90vw;
	margin: auto;
	margin-bottom: 2.5rem;
}

.ch_best .tag {
	width: fit-content;
	margin: auto;
	margin-bottom: 1.5rem;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	padding: 0.35rem 1.75rem;
	font-size: 1.25rem;
	color: #4aa3c8;
	font-weight: 800;
	border-radius: 2rem;
}

.ch_best .title {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.25rem;
	letter-spacing: 1px;
}

.ch_best .title span {
	color: #4aa3c8;
}

.ch_best .brief {
	padding: 0.2rem 0.5rem;
	padding-left: 0.75rem;
	border-left: 2px solid #0093D9;
	color: #333333b7;
	letter-spacing: 0.05rem;
	line-height: 1.4;
	text-align: justify;
}

.case_study {
	width: 90vw;
	margin: auto;
	margin-bottom: 2.5rem;
}

.case_study .tag {
	width: fit-content;
	margin: auto;
	margin-bottom: 1.5rem;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	padding: 0.35rem 1.75rem;
	font-size: 1.25rem;
	color: #4aa3c8;
	font-weight: 800;
	border-radius: 2rem;
}
.case_study .title {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: 1px;
}
.case_study .title span {
	color: #4aa3c8;
}
.case_study .case-studies-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	width: 100%;
	max-width: 1200px;
}
.case_study .case-card {
	background: rgba(173, 216, 230, 0.4);
	/* glassy light blue */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 1rem;
	padding: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.case_study .case-card:nth-child(2n-1){
	background: rgba(255, 255, 255, 0.4);
}
.case_study .case-card h3 {
	letter-spacing: 1px;
	font-size: 800;
	margin-bottom: 0.25rem;
}
.case_study .case-card p {
	line-height: 1.3;
	text-align: justify;
}


.our_serv {
	width: 90vw;
	margin: auto;
	margin-bottom: 3rem;
}
.our_serv .tag {
	width: fit-content;
	margin: auto;
	margin-bottom: 1.5rem;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	padding: 0.35rem 1.75rem;
	font-size: 1.25rem;
	color: #4aa3c8;
	font-weight: 800;
	border-radius: 2rem;
}
.our_serv .title {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.25rem;
	letter-spacing: 1px;
}
.our_serv .title span {
	color: #4aa3c8;
}
.our_serv .service_container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	width: 100%;
	max-width: 1200px;
}
.our_serv .service-card {
	position: relative;
	background: rgba(173, 216, 230, 0.4);
	/* glassy light blue */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 3rem;
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
	padding: 1.5rem 1.8rem;
	padding-top: 2.5rem;
	margin-top: 2rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.our_serv .service-card:nth-child(2n){
	background: rgba(255, 255, 255, 0.4);
}
.our_serv .service-card .icon {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 2.5rem;
	width: 4rem;
	height: 4rem;
	background: rgba(255, 255, 255, 0.9);
	/* glassy light blue */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
	border-radius: 0.75rem;
}
.our_serv .service-card:nth-child(2n) .icon{
	background: rgba(173, 216, 230, 0.8);
	/* glassy light blue */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #fff;
}
.our_serv .service-card h3 {
	letter-spacing: 1px;
	font-weight: 800;
	margin-bottom: 0.25rem;
	text-align: center;
}
.our_serv .service-card p {
	line-height: 1.3;
	text-align: justify;
}


.why_us {
	width: 90vw;
	margin: auto;
	margin-bottom: 3rem;
}
.why_us .tag {
	width: fit-content;
	margin: auto;
	margin-bottom: 1.5rem;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	padding: 0.35rem 1.75rem;
	font-size: 1.25rem;
	color: #4aa3c8;
	font-weight: 800;
	border-radius: 2rem;
}
.why_us .title {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.25rem;
	letter-spacing: 1px;
}
.why_us .title span {
	color: #4aa3c8;
}
.why_us .why_us_cont {
	display: flex;
	flex-direction: column;
	gap: 2.25rem;
}
.why_us .whyus-card img {
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.why_us .whyus-card .sub {
	margin: 0.5rem auto;
	text-align: center;
	color: #4aa3c8;
}
.why_us .whyus-card h3 {
	letter-spacing: 1px;
	font-weight: 800;
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}
.why_us .whyus-card p {
	padding: 0.2rem 0.5rem;
	padding-left: 0.75rem;
	border-left: 2px solid #0093D9;
	color: #333333b7;
	letter-spacing: 0.05rem;
	line-height: 1.4;
	text-align: justify;
}


.reviews {
	margin-bottom: 3rem;
	width: 100vw;
	overflow: hidden;
}
.reviews .reviews_top{
	width: 90vw;
	margin: auto;
}
.reviews .tag {
	width: fit-content;
	margin: auto;
	margin-bottom: 1.5rem;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	padding: 0.35rem 1.75rem;
	font-size: 1.25rem;
	color: #4aa3c8;
	font-weight: 800;
	border-radius: 2rem;
}
.reviews .title {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}
.reviews .title span {
	color: #4aa3c8;
}
.reviews .reviews-container {
	overflow: visible;
}
.reviews .swiper-wrapper {
	transition: transform 0.5s ease-in-out; 
}
.reviews .swiper-slide {
	width: 100vw;
	min-height: 18.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.reviews .reviews-card {
	background: rgba(173, 216, 230, 0.4);
	/* glassy light blue */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 1rem;
	padding: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	width: 90%;
	margin: auto;
	height: 100%;
}
.reviews .reviews-card .profile {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	align-items: center;
}
.reviews .reviews-card .profile .icon {
	font-size: 3rem;
	opacity: 0.9;
	width: 4rem;
	height: 4rem;
	background: rgba(255, 255, 255);
	/* glassy light blue */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.75rem;
}
.reviews .reviews-card .profile .ind {
	display: flex;
	flex-direction: column;
	letter-spacing: 1px;
}
.reviews .reviews-card .profile .ind .name {
	font-weight: 600;
}
.reviews .reviews-card .profile .ind .desig {
	font-size: 0.85rem;
}
.reviews .reviews-card .rating {
	font-size: 1.5rem;
	color: #FFC107;
}
.reviews .reviews-card .brief {
	padding: 0.2rem 0.5rem;
	padding-left: 0.75rem;
	border-left: 2px solid #0093D9;
	letter-spacing: 0.05rem;
	line-height: 1.4;
	text-align: justify;
	font-size: 0.9rem;
	font-weight: 600;
}

footer {
	width: 100vw;
	background: #1c2027;
	box-shadow: 0 0 2rem rgba(0, 0, 0, 0.45);
	padding: 2.5rem 0;
	padding-bottom: 8rem;
	color: var(--color-bg);
}
footer .comp_brief {
	display: flex;
	flex-direction: column;
	width: 90vw;
	margin: auto;
}
footer .comp_brief .comp_logo {
	width: 100%;
}
footer .comp_logo img {
	width: 100%;
}
footer .comp_brief .brief {
	margin-top: 1rem;
	text-align: justify;
	font-size: 0.95rem;
	letter-spacing: 1px;
	font-weight: 300;
}
footer .socials {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	margin-top: 1.75rem;
}
footer .socials a {
	margin: auto;
	font-size: 2.5rem;
	display: flex;
	align-items: center;
	color: var(--color-bg);
}
footer .quick_l {
	margin: 1.5rem auto;
	text-align: center;
}
footer .quick_l .title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}
footer .quick_l .links {
	display: grid;
	gap: 1rem;
	font-size: 1.1rem;
	letter-spacing: 1px;
}
footer .quick_l .links a {
	color: var(--color-bg);
}
footer .gallery .title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: 1px;
	text-align: center;
}
footer .gallery .cont {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1rem;
	width: 95%;
	margin: auto;
}
footer .gallery img {
	width: 100%;
	border-radius: 0.35rem;
}
footer .rights {
	margin-top: 1.5rem;
	text-align: center;
	font-size: 1.1rem;
	letter-spacing: 1px;
}

footer .designed_by {
	text-align: center;
	margin: auto;
	margin-top: 1rem;
	width: fit-content;
	padding: 0.75rem 1rem;
	padding-bottom: 0;
	border-top: 1px solid var(--color-bg);
}
footer .designed_by .top {
    font-family: "Lobster", sans-serif;
    font-style: normal;
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 0.3rem;
}
footer .designed_by .comp_url {
	font-size: 1.1rem;
	letter-spacing: 1px;
	color: var(--color-bg);
	font-weight: 600;
	text-decoration: underline;
}


.service_pg {
	margin: 1.5rem auto;
}
.service_pg .head {
	text-align: center;
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: 1px;
}
.service_pg .head span {
	color: var(--color-hig);
}
.service_pg .passage {
	width: 92.5vw;
	margin: 1rem auto;
	padding: 0.2rem 0.5rem;
	padding-left: 0.75rem;
	border-left: 2px solid #0093D9;
	letter-spacing: 0.05rem;
	line-height: 1.4;
	text-align: justify;
	font-size: 0.9rem;
	font-weight: 600;
	opacity: 0.9;
	background: linear-gradient(to right,
			rgba(173, 216, 230, 0.5) 0%,
			#F8FAFC 60%,
			#F8FAFC 100%
		);
}
.service_pg .container {
	display: grid;
	gap: 1.5rem;
	width: 90vw;
	margin: auto;
	margin-top: 1.5rem;
}
.service_pg article {
	background: rgba(173, 216, 230, 0.75);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 1rem;
	padding-top: 3.25rem;
	position: relative;
	margin-top: 2.5rem;
	border-radius: 1rem;
	box-shadow: 0 8px 1.5rem rgba(0, 0, 0, 0.15);

	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	position: relative;

	color: var(--color-bg);
}
.service_pg article.hr {
	background-image: url('assets/gallery/hr.jpeg');
}
.service_pg article.pc_build {
	background-image: url('assets/gallery/pc_build.jpeg');
}
.service_pg article.internship {
	background-image: url('assets/gallery/internship.jpeg');
}
.service_pg article.clg_workshop {
	background-image: url('assets/gallery/workshop.jpeg');
}
.service_pg article.sem_project {
	background-image: url('assets/gallery/sem_projects.jpeg');
}
.service_pg article.web_dev {
	background-image: url('assets/gallery/hunger.jpg');
}
.service_pg article .content>* {
	z-index: 100;
}
.service_pg article .blurer {
	position: absolute;
	background: rgba(93, 143, 160, 0.6);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	border-radius: 1rem;
}
.service_pg article .icon {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 3.25rem;
	width: 5.5rem;
	height: 5.5rem;
	background: rgba(173, 216, 230);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 0.5rem solid var(--color-bg);
	color: var(--color-dark);
}
.service_pg article .title {
	text-align: center;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 1px;
}
.service_pg article .brief {
	text-align: justify;
	line-height: 1.4;
	font-size: 0.9rem;
	font-weight: 500;
}


.book_call_btn {
	width: 95vw;
	margin: 2.5rem auto;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	border-radius: 1rem;
	padding: 0.5rem;
	display: flex;
	flex-direction: row;
}
.book_call_btn .head {
	font-size: 1.1rem;
	font-weight: 800;
	padding: 0.5rem;
}
.book_call_btn a {
	background: var(--color-dark);
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgb(191, 233, 247);
	border-radius: 0.75rem;
	font-size: 1.1rem;
	letter-spacing: 1px;
	font-weight: 900;
}
.book_call_btn.ser_pg {
	margin: 2.75rem auto;
}
.book_call_btn.hm_pg {
	margin-top: 0;
}

.bookus  {
	margin: 1.5rem auto;
}
.bookus .top_head {
	text-align: center;
	font-size: 1.4rem;
	font-weight: 900;
	letter-spacing: 1px;
}
.bookus .top_head span {
	color: var(--color-hig);
}
.bookus .passage {
	width: 95vw;
	margin: auto;
	margin-top: 1rem;
	padding: 0.2rem 0.5rem;
	padding-left: 0.75rem;
	border-left: 2px solid #0093D9;
	letter-spacing: 0.05rem;
	line-height: 1.4;
	text-align: justify;
	font-size: 0.9rem;
	font-weight: 600;
	opacity: 0.9;
	background: linear-gradient(to right,
			rgba(173, 216, 230, 0.5) 0%,
			#F8FAFC 60%,
			#F8FAFC 100%
		);
}
.bookus .contact_btns {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	width: 95vw;
	margin: 1.25rem auto;
	text-align: center;
	font-size: 2.5rem;
	color: #fff;
	padding: 0.5rem 0;
	border-radius: 0.75rem;
	background-image: url('assets/form_banner.png');
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.bookus .contact_btns .blurer {
	position: absolute;
	background: rgba(93, 143, 160, 0.6);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
}
.bookus .contact_btns .icon {
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-bg);
}

.bookus .form {
    width: 95vw;
    margin: auto;
    padding: 0.75rem;
	position: relative;
    background-image: url('assets/form_banner.png');
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.bookus .form>* {
    width: 100%;
	z-index: 100;
	color: var(--color-bg);
}

.bookus .form .blurer {
	position: absolute;
	background: rgba(93, 143, 160, 0.6);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
}

.bookus .form .head {
    font-weight: 700;
    letter-spacing: 1px;
}

.bookus .form input,
.bookus .form .pin_location {
    width: 100%;
    background: transparent;
    border-bottom: 1px solid var(--color-bg);
    padding: 0 0.75rem;
    padding-top: 0.25rem;
    font-size: 1.2rem;
    color: var(--color-bg);
    letter-spacing: 1px;
}

.bookus .form .mobile span {
    display: flex;
    letter-spacing: 5px;
	font-weight: 700;
}

.bookus .form .mobile span input {
    letter-spacing: 5px;
}

.bookus .form .mobile span label {
    border-bottom: 1px solid var(--color-bg);
    padding-top: 0.25rem;
    padding-left: 0.5rem;
    font-size: 1.2rem;
}

.bookus .form .pincode input {
    letter-spacing: 5px;
}

.bookus .form .pin_location {
    border-bottom: 1px solid var(--color-bg);
}

.bookus .pincode_error {
    display: none;
    margin: -0.5rem 0;
    margin-left: 0.5rem;
    font-weight: 700;
    color: rgb(241, 3, 3);
    letter-spacing: 1px;
}

.bookus .form .event {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.2rem 0.5rem;
    font-weight: 800;
    background: transparent;
    margin-top: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid var(--color-bg);
    color: var(--color-bg);
    letter-spacing: 1px;
}

.bookus .form .event option {
    font-size: 1rem;
	color: var(--color-dark);
}

.bookus .form .types {
    display: flex;
    flex-wrap: wrap;
    margin: 0.25rem 0;
    margin-bottom: 0;
}

.bookus .form .book_now {
    width: fit-content;
    margin: 0.5rem auto;
    background: var(--color-dark);
    padding: 0.25rem 2rem;
    border-radius: 0.5rem;
    color: var(--color-bg);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.bookus .fill_all_error {
	display: none;
    margin: -0.5rem 0;
    margin-bottom: 0.25rem;
    text-align: center;
    font-weight: 900;
    color: rgb(255, 0, 0);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.bookus .booked_pop {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 500;
	display: none;
}

.bookus .booked_pop.active {
    display: block;
}

.bookus .booked_pop .blur {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(242, 251, 255, 0.9);
    z-index: 510;
}

.bookus .booked_pop .container {
    z-index: 520;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92vw;
    background: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
}

.bookus .booked_pop .container.loading {
    display: block;
}

.bookus .booked_pop .container.loaded_order {
    display: none;
}

.bookus .booked_pop .container .brief {
    text-align: justify;
    font-weight: 300;
}

.bookus .booked_pop .container .btn {
    width: fit-content;
    padding: 0.2rem 1.5rem;
    margin: auto;
    background: var(--color-dark);
    color: rgb(191, 233, 247);
    border-radius: 0.5rem;
    font-weight: 700;
    margin-top: 0.75rem;
}



.about_pg .logo_banner {
    margin: auto;
    margin-top: 1rem;
    width: 92.5vw;
}

.about_pg .logo_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about_pg .founder_prl {
	width: 92.5vw;
	margin: auto;
	margin-top: 1rem;
}
.about_pg .founder_prl.cof {
	margin-top: 2rem;
}
.about_pg .founder_prl .profile {
	width: 100%;
	text-align: center;
}
.about_pg .founder_prl .profile .image {
	position: relative;
	width: 90vw;
	height: 90vw;
	margin: auto;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

	background-image: url('assets/gallery/nexafoba_founder.jpeg');
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;

	border-radius: 1rem;
}
.about_pg .founder_prl.cof .profile .image {
	background-image: url('assets/gallery/nexafoba_co_founder.jpeg');
}
.about_pg .founder_prl .profile .image span {
    width: 100%;
	z-index: 100;
	font-size: 1.5rem;
	color: var(--color-bg);
	left: 50%;
	bottom: 0.5rem;
	transform: translate(-50%,0);
	position: absolute;
	letter-spacing: 2px;
}

.about_pg .founder_prl .profile .image .blurer {
	position: absolute;
	background: linear-gradient(to bottom,
			rgba(173, 216, 230, 0.05) 0%,
			rgba(173, 216, 230, 0.4) 65%,
			rgba(173, 216, 230) 100%
		);
	pointer-events: none;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
}
.about_pg .founder_prl.cof .profile .image .blurer {
	background: linear-gradient(to bottom,
		rgba(173, 216, 230, 0.05) 0%,
		rgba(173, 216, 230, 0.3) 70%,
		rgba(173, 216, 230) 100%
	);
}

.about_pg .founder_prl .profile .name {
	margin: 1.5rem auto;
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: 900;
}
.about_pg .founder_prl .brief {
	padding: 0.2rem 0.5rem;
	padding-left: 0.75rem;
	border-left: 2px solid #0093D9;
	color: #333333b7;
	letter-spacing: 0.05rem;
	line-height: 1.4;
	text-align: justify;
	margin-bottom: 2rem;
}
.about_pg .founder_prl.cof .brief {
	margin-bottom: -0.5rem;
}
.about_pg .founder_prl .brief span {
	font-weight: 700;
	opacity: 0.7;
}

.about_pg article {
    width: 92.5%;
    margin: 2.5rem auto;
}

.about_pg article .head {
    width: fit-content;
	margin: auto;
	margin-bottom: 1.5rem;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	padding: 0.35rem 1.75rem;
	font-size: 1.25rem;
	color: var(--color-hig);
	font-weight: 800;
	border-radius: 2rem;
}

.about_pg article .content {
    text-align: justify;
    padding: 0.75rem 1rem;
	color: var(--color-bg);
	
	background: rgba(173, 216, 230);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}
.about_pg article.story .content {
	background-image: url('assets/gallery/four_piller.jpg');
}
.about_pg article.comp_prl .content {
	background-image: url('assets/gallery/hunger.jpg');
}
.about_pg article.vis_mis .content {
	background-image: url('assets/gallery/meeting.jpeg');
}
.about_pg article .content>* {
	z-index: 100;
}
.about_pg article .content .blurer {
	position: absolute;
	background: rgba(93, 143, 160, 0.6);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
}

.about_pg .story {
    margin-top: 2rem;
    padding-top: 0;
}

.about_pg span {
    font-weight: 900;
	color: var(--color-dark);
}

.about_pg .vis_mis span {
    letter-spacing: 1px;
}

.about_pg .contact_btns {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	width: 95vw;
	margin: 1rem auto;
	text-align: center;
	font-size: 2.5rem;
	color: #fff;
	padding: 0.5rem 0;
	border-radius: 0.75rem;
	background-image: url('assets/form_banner.png');
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.about_pg .contact_btns .blurer {
	position: absolute;
	background: rgba(93, 143, 160, 0.6);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
}
.about_pg .contact_btns .icon {
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-bg);
}



/* ------------------------------PRE-LOADER--------------------------------- */

.pre_loder {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 8.5rem;
    position: fixed;
    justify-content: center;
    align-items: center;
    background: var(--color-bg);
    top: 0;
    left: 0;
    z-index: 2000;
    transition: display 1s ease;
}

.pre_loder .loder_container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pre_loder .ring {
    width: 12rem;
    height: 12rem;
    border: 0px solid black;
    border-radius: 50%;
    position: absolute;
}

.pre_loder .ring:nth-child(1) {
    border-bottom-width: 8px;
    border-color: #8BDAFF;
    animation: loader1 1s linear infinite;
}

.pre_loder .ring:nth-child(2) {
    border-right-width: 8px;
    border-color: #4aa3c8;
    animation: loader2 1s linear infinite;
}

.pre_loder .ring:nth-child(3) {
    border-top-width: 8px;
    border-color: #0093D9;
    animation: loader3 1s linear infinite;
}


@keyframes loader1 {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes loader2 {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes loader3 {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

.redirect_pg {
	width: 100vw;
	height: 100vh;
	background: radial-gradient(circle at 50% 50%, #1a2033, #1a2031, #1c2025);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	padding: 0 4rem;
}
.redirect_pg>* {
	display: flex;
	flex-direction: column;
	height: 100%;
	align-items: center;
	justify-content: center;
}
.redirect_pg .welcome {
    font-family: "Lobster", sans-serif;
    font-style: normal;
	font-size: 4rem;
	color: #fff;
}
.redirect_pg .logo img {
	width: 100%;
	object-fit: contain;
}
.redirect_pg .qr img {
	border-radius: 2rem;
}
.redirect_pg .message {
	font-size: 1.25rem;
	color: #fff;
	font-weight: 700;
	margin-top: 1.5rem;
	text-align: center;
}

