:root {
	--black: #161618;
	--bg: #202124;
	--blackish-color: #202124;
	--bg-hover: #414245;
	--text-gray: #606261;
	--primary: #e48413;
	--primary-hover: #cf7712;
	--smoke-white: #FFFFFFD9;
	--smoke-white-50: rgba(255, 255, 255, 0.5);
	--radius-xs: 4px;
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 20px;
	--card-bg: rgba(220, 224, 229, 0.2);
	--bg-light-gray: #292A2D;
}

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1.5;
	font-family: "Inter", serif;
	font-weight: 400;
	overflow-x: hidden;
}

body.hidden-scrolling {
	overflow-y: hidden;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	text-transform: capitalize;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

.dark-button {
	display: block;
	background: var(--blackish-color);
	font-weight: 500;
	color: var(--smoke-white);
	height: 48px;
	width: fit-content;
	padding: 0px 1.5rem;
	line-height: 48px;
	transition: all 0.3s ease-in-out;
}

.dark-button:hover {
	background: black;
	color: white;
}

.max-screen-width {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}

.custom-card {
	background-color: #ffffff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--smoke-white-50);
}

input {
	width: 300px;
	height: 48px;
	padding-left: 8px;
	font-size: 1rem;
	color: var(--blackish-color);
	border: 1px solid var(--blackish-color);
}

input::placeholder {
	color: var(--blackish-color);
}

textarea {
	width: 100%;
	padding-left: 8px;
	padding-top: 8px;
	font-size: 1rem;
	color: var(--blackish-color);
	border: 1px solid var(--blackish-color);
}

textarea::placeholder {
	color: var(--blackish-color);
}

.pagination {
	display: flex;
	gap: 0.75rem;
	padding-left: 1rem;
	padding-right: 1rem;
	justify-content: center;
	margin-top: 2rem;
}

.pagination .page-item {
	border-radius: 4px;
	border: 1px solid rgba(0, 0, 0, 0.2);
}

.pagination .page-item .page-link {
	display: block;
	padding: 6px 14px;
	color: var(--text-gray) !important;
	font-size: 1rem;
}

.pagination .page-item:hover>.page-link {
	color: var(--primary-hover);
}

.pagination .active {
	display: block;
	box-shadow: 0 0.5rem 1.125rem -0.425rem rgba(254, 105, 106, 0.9);
	background-color: var(--primary-hover);
}

.pagination .active .page-link {
	color: #fff !important;
}

/* -------------------------- General Purpose Table ------------------------ */
.custom-table {
	font-family: Arial, Helvetica, sans-serif;
	border-collapse: collapse;
	width: 100%;
}

.custom-table td, .custom-table th {
	border: 1px solid var(--card-bg);
	padding: 8px;
}

.custom-table th span {
	font-style: italic;
	font-weight: 400;
	color: white;
}

.custom-table tr:nth-child(even) {
	background-color: var(--card-bg);
}

.custom-table tr:hover {
	transition: all 0.3s ease-in-out;
	background-color: var(--primary-hover);
	color: white;
}

.custom-table th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: var(--primary);
	color: white;
}

.custom-table caption {
	text-align: left;
	text-transform: uppercase;
	color: var(--blackish-color);
	margin-bottom: 0.5rem;
	font-weight: 500;
}

/* --------------------------- header starts ---------------------- */
header {
	width: 100%;
	z-index: 99;
	position: sticky;
	top: 0;
}

.header-banner {
	padding: 0.75rem 3rem;
	width: 100%;
	background-color: var(--bg);
	display: flex;
	gap: 1rem;
}

.header-banner .item a,
.header-banner .item {
	color: white;
	font-size: 14px;
}

.header-banner .item a:hover {
	color: var(--primary);
	transition: all 0.3s ease-in-out;
}

.header-banner .item i {
	color: var(--primary);
	margin-right: 2px;
}

.header-banner .item span {
	color: var(--smoke-white);
}

.header-banner .seperator {
	border-left: 1px solid rgba(255, 255, 255, .45);
}


@media screen and (max-width: 600px) {
	.header-banner {
		padding: 0.75rem 1rem;
	}

	.header-banner .item:first-child,
	.header-banner .seperator {
		display: none;
	}
}

header .navbar {
	padding-left: 1rem;
	padding-right: 1rem;
	height: 78px;
	display: flex;
	align-items: center;
	gap: 2rem;
	justify-content: space-between;
	background-color: #fff;
	box-shadow: 0 0.25rem 0.5625rem -0.0625rem rgba(0, 0, 0, .03), 0 0.275rem 1.25rem -0.0625rem rgba(0, 0, 0, .05);
}

header .navbar .logo {
	margin-right: auto;
}

header .navbar .nav-links {
	margin-right: auto;
}

header .navbar .logo img {
	width: auto;
	height: 48px;
}

header .navbar .nav-links ul {
	display: flex;
	align-items: center;
}

header .navbar .nav-links ul li a {
	padding: 18px 14px;
	color: var(--blackish-color);
}

header .navbar .nav-links ul li a:hover {
	transition: all 0.3s ease-in-out;
	color: var(--primary);
}

header .navbar .user-links {
	display: flex;
	gap: 2rem;
}

header .mobile-nav-links {
	display: none;
}

header .navbar .menu {
	display: none;
}

@media screen and (max-width: 1024px) {
	header .navbar {
		justify-content: space-between;
	}


	header .navbar .nav-links {
		display: none;
	}

	header .navbar .menu {
		display: block;
		border: 1px solid black;
		width: 42px;
		height: 42px;
		line-height: 42px;
		text-align: center;
	}

	header .navbar .menu i {
		font-size: 1.2rem;
	}

	header .mobile-nav-links {
		display: none;
		padding: 1.5rem 1rem;
		background-color: #fff;
	}

	header .mobile-nav-links ul {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	header .mobile-nav-links ul li a {
		padding: 18px 14px;
		color: var(--blackish-color);
	}

	header .mobile-nav-links ul li a:hover {
		color: var(--primary);
	}
}

/* -------------------- footer starts --------------------------- */
footer {
	background: var(--bg);
	padding: 4rem 4rem 2rem 4rem;
}

footer .main {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	justify-content: space-around;
	gap: 2rem;
	padding-bottom: 3rem;
}

footer .main .info {
	grid-column: span 4;
}

footer .main .links {
	grid-column: span 3;
}

footer .main .map {
	grid-column: span 5;
}

footer .main .info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

footer .main .info .desc h2 {
	color: white;
	font-size: 1.75rem;
}

footer .main .info .desc p {
	color: var(--smoke-white);
	font-weight: 400;
	margin-top: 0.5rem;
}

footer .main .info .subscribe h3 {
	color: white;
	margin-bottom: 0.5rem;
}

footer .main .info .subscribe form .input-group {
	position: relative;
	width: fit-content;
}

footer .main .info .subscribe form .input-group button {
	width: 48px;
	height: 48px;
	background: var(--primary);
	border: none;
	outline: none;
	position: absolute;
	right: 0px;
	color: var(--smoke-white);
	border-top: 1px solid var(--blackish-color);
	border-bottom: 1px solid var(--blackish-color);
	border-right: 1px solid var(--blackish-color);
	transition: all 0.3s ease-in-out;

}

footer .main .info .subscribe form .input-group button span i {
	font-size: 1.25rem;
	color: white;
}

footer .main .info .subscribe form .input-group button:hover {
	background: var(--primary-hover);
	color: white;
	cursor: pointer;
}

footer .main .links {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

footer .main .links h3 {
	font-size: 1.5rem;
	color: white;
}

footer .main .links ul {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

footer .main .links ul li a {
	padding: 4px;
	color: var(--smoke-white);
	transition: all 0.3s ease-in-out;
}

footer .main .links ul li a:hover {
	color: var(--primary);
}

footer .main .map {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

footer .main .map h3 {
	color: white;
	font-size: 1.5rem;
}

footer .main .map iframe {
	width: auto;
	height: 100%;
}

footer .contact {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: space-between;
}

footer .contact .title h3 {
	color: white;
	font-size: 1.5rem;
}

footer .contact .title p {
	color: var(--smoke-white);
}

footer .contact .link {
	display: flex;
	align-items: center;
	gap: 1rem;
}

footer .contact .link .icon {
	background: var(--black);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	min-width: 60px;
	min-height: 60px;
	text-align: center;
	line-height: 60px;
}

footer .contact .link .icon i {
	font-size: 1.1rem;
	color: white;
}

footer .contact .link .text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

footer .contact .link .text h4 {
	color: white;
	font-weight: 400;
	font-size: 14px;
}

footer .contact .link .text p {
	color: var(--smoke-white);
	font-weight: 600;
}

footer .contact .link:hover p {
	color: var(--primary);
	transition: all 0.3 ease-in-out;
}

footer .developer {
	border-top: 1px solid var(--smoke-white-50);
	padding-top: 1rem;
}

footer .developer p {
	color: var(--smoke-white);
}

footer .developer p a {
	color: white;
	font-weight: 600;
	transition: all 0.3 ease-in-out;
}

footer .developer p a:hover {
	color: var(--primary);
}

@media screen and (max-width: 1100px) {
	footer {
		padding: 4rem 1rem 2rem 1rem;
	}
}

@media screen and (max-width: 900px) {
	footer .main .info {
		grid-column: span 12;
	}

	footer .main .links {
		grid-column: span 4;
	}

	footer .main .map {
		grid-column: span 8;
	}
}

@media screen and (max-width: 600px) {
	footer .main {
		gap: 3rem 0rem;
	}

	footer .main .info {
		grid-column: span 12;
	}

	footer .main .links {
		grid-column: span 12;
	}

	footer .main .map {
		grid-column: span 12;
	}
}

/* ------------------- Home(Hero) Starts ---------------------- */
.home-hero {
	width: 100vwa;
	height: calc(100vh - 80px);
}

.home-hero .slider-container {
	overflow: hidden !important;
}

.home-hero .slider-container .home-hero-slider {
	display: flex !important;
	height: calc(100vh - 80px);
}

.home-hero .slider-container .home-hero-slider .slider-item {
	width: 100%;
	background: rgb(0, 0, 0, 0.1);
	background-size: cover;
	background-position: center;
	position: relative;
}

.home-hero .slider-container .home-hero-slider .slider-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.home-hero .slider-container .home-hero-slider .my-slider-item-1 {
	background-image: url('/user-assets/images/sliders/01.jpg');
}

.home-hero .slider-container .home-hero-slider .my-slider-item-2 {
	background-image: url('/user-assets/images/sliders/02.jpg');
	display: flex;
	justify-content: center;
	align-items: center;
}

.home-hero .slider-container .home-hero-slider .slider-item .card {
	max-width: 800px;
	width: 800px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	margin: 24px 10%;
}

.home-hero .slider-container .home-hero-slider .slider-item .card h2 {
	color: white !important;
	margin-bottom: 1rem;
	font-weight: bold;
	font-size: 4rem;
	line-height: 5rem;
	z-index: 2;
}

.home-hero .slider-container .home-hero-slider .slider-item .card h2 span {
	color: var(--primary);
}

.home-hero .slider-container .home-hero-slider .slider-item .card p {
	color: var(--smoke-white);
	z-index: 2;
}

.home-hero .slider-container .home-hero-slider .slider-item .card .link {
	height: 56px;
	width: fit-content;
	padding: 0px 1.5rem;
	line-height: 56px;
	z-index: 2;
	margin-top: 2rem;
	box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease, transform 0.3s ease;
	font-weight: 500;
}

.home-hero .slider-container .home-hero-slider .my-slider-item-2 .card {
	align-items: center;
	text-align: center;
}

.home-hero .slider-container .home-hero-slider .my-slider-item-2 .label {
	background-color: rgba(0, 0, 0, 0.4);
	color: white;
	z-index: 2;
	width: fit-content;
	padding: 4px 1rem;
	margin-bottom: -1rem;
	margin-left: auto;
	margin-right: auto;
}

.home-hero .slider-container .home-hero-slider .my-slider-item-2 .label i {
	color: var(--primary);
	margin-right: 4px;
}

.home-hero .slider-container .home-hero-slider .slider-item .card .link i {
	margin-left: 4px;
}

.home-hero .slider-container .home-hero-slider .slider-item .card .link-1 {
	background: var(--primary);
	color: var(--smoke-white);
}

.home-hero .slider-container .home-hero-slider .slider-item .card .link-1:hover {
	background: var(--primary-hover);
	color: white;
}

.home-hero .slider-container .home-hero-slider .slider-item .card .link-2 {
	background: var(--smoke-white);
	color: var(--blackish-color);
	transition: all 0.3s ease;
}

.home-hero .slider-container .home-hero-slider .slider-item .card .link-2:hover {
	background: white;
	color: black;
}

.home-hero .tns-controls {
	display: none;
}

.home-hero .slider-container .tns-nav {
	display: none;
}

@media screen and (max-width: 900px) {
	.home-hero {
		min-height: 100vh;
	}

	.home-hero .slider-container .home-hero-slider {
		min-height: 100vh;
	}

	.home-hero .slider-container .home-hero-slider .slider-item .card {
		width: 100%;
		margin: 0px;
		padding: 1rem 2rem;
	}
}

@media screen and (max-width: 600px) {
	.home-hero .slider-container .home-hero-slider .slider-item .card h2 {
		font-size: 3rem;
		line-height: 3.5rem;
	}
}

/* --------------------------- About Us----------------------- */
.home-about-us {
	display: flex;
	gap: 4rem;
	justify-content: space-around;
	padding: 6rem 10% 5rem 10%;
	align-items: center;
}

.home-about-us .image {
	flex-basis: 50%;
	min-height: 100%;
}

.home-about-us .desc {
	flex-basis: 50%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.home-about-us .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-about-us .desc h2 {
	font-size: 3rem;
}

.home-about-us .desc p {
	color: var(--text-gray);
	margin-bottom: 1rem;
}

.home-about-us .desc a {
	margin-bottom: 2rem;
}

.home-about-us .features {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	padding-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
}

.home-about-us .features .col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.home-about-us .features .col span i {
	color: var(--primary-hover);
	margin-right: 2px;
}

@media screen and (max-width: 1200px) {
	.home-about-us {
		gap: 2rem;
		padding: 6rem 1rem 5rem 1rem;
	}
}

@media screen and (max-width: 900px) {
	.home-about-us .image {
		display: none;
	}

	.home-about-us .desc {
		flex-basis: 100%;
	}
}

/* ------------------------------Home Video ------------------------- */
.parallax-section {
	padding-top: 6rem;
}

/* Parallax Video Container */
.parallax-container {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

/* Fullscreen video for background */
.parallax-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translateY(0);
	z-index: -1;
}

/* Content */
.parallax-content {
	position: relative;
	background: #f5f5f5;
	padding: 20px 10%;
	text-align: center;
	height: 60vh;
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
}

@media screen and (max-width: 1000px) {
	.parallax-content {
		height: fit-content;
		padding: 3rem 1rem;
		flex-wrap: wrap;
	}
}

.parallax-content .col {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.parallax-content .col .value {
	font-size: 5rem;
	font-weight: bolder;
	color: black;
}

.parallax-content .col .value span {
	color: var(--primary);
}

.parallax-content .col .text {
	font-size: 1.2rem;
	color: var(--text-gray);
	font-weight: 500;
	white-space: nowrap;
}

/* ---------------------------- Home Projects -------------------------- */
.home-projects {
	padding: 4rem 1rem 6rem 1rem;
}

.home-projects .top {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: space-between;
}

.home-projects .top h2 {
	font-size: 3rem;
	font-weight: bold;
}

.home-projects .top a {
	margin-left: auto;
}

.home-projects .top a i {
	margin-left: 2px;
}

.home-projects .row {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	justify-content: space-around;
	gap: 2rem;
}

.home-projects .row .card {
	grid-column: span 4;
	background: var(--card-bg);
	padding: 2rem;
}

.home-projects .row .card img {
	width: 100%;
	height: fit-content;
	object-fit: cover;
	object-position: center;
	transition: all 0.3s ease-in-out;
}

.home-projects .row .card:hover>img {
	transform: scale(1.03);
}

.home-projects .row .card .footer {
	margin-top: 1.5rem;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.home-projects .row .card .footer .info h3 {
	font-size: 1.25rem;
	font-weight: bold;
}

.home-projects .row .card .footer .info p {
	color: var(--text-gray);
}

.home-projects .row .card .footer .link {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	margin-left: auto;
}

.home-projects .row .card .footer .link i {
	margin-left: -7px;
	font-size: 1rem !important;
}

@media screen and (max-width: 900px) {
	.home-projects .row .card {
		grid-column: span 6;
	}
}

@media screen and (max-width: 560px) {
	.home-projects .row {
		gap: 2rem 0rem;
	}

	.home-projects .row .card {
		grid-column: span 12;
	}

	.home-projects .top h2 {
		font-size: 2.75rem;
	}
}

/* ---------------------------- Our Clients --------------------- */
.our-clients {
	background: #F8F8F8;
}

.our-clients .our-clients-wrapper {
	padding: 3rem;
	position: relative;
}

.our-clients h2 {
	margin-bottom: 2rem;
	font-size: 2.5rem;
	font-weight: bold;
}

.our-clients .clients-slider {
	display: flex;
	gap: 2rem;
	overflow: hidden;
}

.our-clients .clients-slider .card {
	height: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.5rem;
}

.our-clients .clients-slider .card img {
	height: 100%;
	width: auto;
}

.our-clients .tns-controls {
	position: absolute;
	right: 2rem;
	top: 3.5rem;
	display: flex;
	gap: 0.7rem;
}

.our-clients .tns-controls button {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	color: var(--smoke-white);
	background: var(--blackish-color);
	font-size: 1rem;
	font-weight: 500;
	border: none;
	outline: none;
	transition: all 0.3s ease-in-out;
}

.our-clients .tns-controls button:hover {
	background: black;
	color: white;
}

.our-clients .tns-nav {
	display: none;
}

@media screen and (max-width: 1000px) {
	.our-clients {
		padding: 3rem 1rem;
	}

	.our-clients .tns-controls {
		right: 1rem;
	}
}

@media screen and (max-width: 600px) {
	.our-clients .our-clients-wrapper {
		padding: 3rem 0rem;
	}
}

/* ---------------------------About Us Hero ------------------- */
.projects-hero {
	padding: 4rem 10% 0rem 10%;
}

.projects-hero h1 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.projects-hero p {
	color: var(--text-gray);
}

/* --------------------------- About Us----------------------- */
.projects {
	display: flex;
	flex-direction: column;
	gap: 6rem;
	padding: 6rem 10%;
}

.project {
	display: flex;
	gap: 4rem;
	justify-content: space-around;
}

/* the even children should be the image right and the text right */
.project:nth-child(2n) {
	flex-direction: row-reverse;
}

.project .image-background {
	flex-basis: 50%;
	height: auto;
	min-height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
}

.project .desc {
	flex-basis: 50%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.project .desc h2 {
	font-size: 2.25rem;
}

.project .desc p {
	color: var(--text-gray);
	margin-bottom: 1rem;
}

@media screen and (max-width: 1200px) {
	.project {
		gap: 2rem;
	}
}

@media screen and (max-width: 900px) {
	.projects-hero {
		padding: 4rem 1rem 0rem 1rem;
	}

	.projects {
		padding: 6rem 1rem;
	}
}

@media screen and (max-width: 700px) {
	.projects {
		gap: 3rem;
	}

	.project {
		flex-direction: column;
	}

	.project:nth-child(2n) {
		flex-direction: column;
	}

	.project .image-background {
		flex-basis: 100%;
		min-height: 400px;
	}

	.project .desc {
		flex-basis: 100%;
	}
}

/* --------------------------- Products ------------------- */
.products-hero {
	padding: 4rem 10% 0rem 10%;
}

.products-hero h1 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.products-hero p {
	color: var(--text-gray);
}

.products {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 4rem 10% 6rem 10%;
	margin-bottom: 4rem;
	overflow-x: auto;
}

.products .products-table {
	min-width: 500px;
}

@media screen and (max-width: 900px) {
	.products-hero {
		padding: 4rem 1rem 0rem 1rem;
	}

	.products {
		padding: 4rem 1rem 1rem 1rem;
	}
}

/* ------------------------------ Timeline ------------------------------- */
.time-line {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 3rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 5rem;
}

.time-line h1 {
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
}

.time-line-wrapper {
	border-top: 2px dotted rgba(0, 0, 0, 0.2);
	display: flex;
	gap: 2rem;
	justify-content: space-between;
}

.time-line-wrapper .story {
	position: relative;
}

.time-line-wrapper .story .year {
	background: var(--blackish-color);
	color: white;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	line-height: 64px;
	text-align: center;
	font-weight: 600;
	font-style: 1.1rem;
	position: absolute;
	top: 0rem;
	left: 50%;
	transform: translate(-50%, -50%);
}

.time-line-wrapper .story .desc {
	padding-top: 3rem;
}

.time-line-wrapper .story .desc p {
	color: var(--text-gray);
	text-align: center;
}

@media screen and (max-width: 800px) {
	.time-line {
		padding-left: 3rem;
		gap: 3rem;
	}

	.time-line-wrapper {
		flex-direction: column;
		border-top: unset;
		border-left: 2px dotted rgba(0, 0, 0, 0.2);
		justify-content: flex-start;
	}

	.time-line-wrapper .story .year {
		top: 50%;
		left: 0;
	}

	.time-line-wrapper .story .desc {
		padding-top: 0rem;
		margin-left: 3rem;
	}

	.time-line-wrapper .story .desc p {
		text-align: left;
	}
}

#about-us-desc {
	margin-top: 1rem;
	font-size: 1.1rem;
	line-height: 2rem;
}

/* ------------------------- Acheivements ---------------------------- */
.acheivements {
	background: var(--bg);
	margin-bottom: 5rem;
}

.acheivements .acheivements-wrapper {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 5rem 1rem;
	display: flex;
	gap: 5rem;
}

.acheivements .acheivements-wrapper .text {
	flex-basis: 50%;
}

.acheivements .acheivements-wrapper .info {
	flex-basis: 50%;
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.acheivements .acheivements-wrapper .text h2 {
	color: white;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.acheivements .acheivements-wrapper .text p {
	color: var(--smoke-white);
}

.acheivements .acheivements-wrapper .info .top {
	display: flex;
	gap: 3rem;
}

.acheivements .acheivements-wrapper .info .top .item {
	flex-basis: 50%;
}

.acheivements .acheivements-wrapper .info .top .item .title {
	color: white;
	font-weight: bolder;
	font-size: 2.25rem;
	border-left: 2px solid var(--primary);
	padding-left: 1rem;
	margin-bottom: 1rem;
}

.acheivements .acheivements-wrapper .info .top .item .desc {
	color: var(--smoke-white);
}

.acheivements .acheivements-wrapper .info .bottom {
	background: var(--bg-light-gray);
	padding: 1.25rem;
	display: flex;
	gap: 2rem;
	align-items: center;
}

.acheivements .acheivements-wrapper .info .bottom i {
	font-size: 3rem;
	color: white;
}

.acheivements .acheivements-wrapper .info .bottom p {
	color: white;
}

@media screen and (max-width: 1100px) {
	.acheivements .acheivements-wrapper {
		gap: 3rem;
	}
}

@media screen and (max-width: 900px) {
	.acheivements .acheivements-wrapper {
		flex-direction: column;
	}

	.acheivements .acheivements-wrapper .info,
	.acheivements .acheivements-wrapper .text {
		flex-basis: 100%;
	}
}

@media screen and (max-width: 500px) {
	.acheivements .acheivements-wrapper .info .top {
		flex-direction: column;
	}

	.acheivements .acheivements-wrapper .info .top .item {
		flex-basis: 100%;
	}
}

/* --------------------------------- Contact us --------------------------------- */
.contact-us {
	padding: 6rem 10%;
	display: flex;
	gap: 6rem;
	justify-content: space-between;
}

.contact-us .info,
.contact-us .form {
	flex-basis: 50%;
}

.contact-us .info h1 {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 2rem;
}

.contact-us .info .items {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-us .info .items .item {
	display: flex;
	gap: 1.25rem;
	align-items: center;
}

.contact-us .info .items .item .icon {
	background: var(--blackish-color);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	line-height: 48px;
	text-align: center;
	border: 2px solid var(--blackish-color);
}

.contact-us .info .items .item .icon i {
	color: white;
	font-size: 1.1rem;
	margin-top: -4px;
}

.contact-us .info .items .item .text p {
	font-weight: 600;
	font-size: 1.1rem;
	color: black;
}

.contact-us .info .items .item .text a, span {
	color: var(--text-gray);
}

.contact-us .info .items a:hover .icon {
	border: 2px solid var(--primary);
	transition: all 0.3s ease-in-out;
}

.contact-us .info .items a:hover .text span,
.contact-us .info .items a:hover .icon i {
	color: var(--primary-hover);
	transition: all 0.3s ease-in-out;
}

.contact-us .form {
	background: var(--card-bg);
	padding: 2rem 2rem 3rem 2rem;
}

.contact-us .form h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 2rem;
}

.contact-us .form form .form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-us .form form .form-wrapper .input-div input {
	width: 100%;
}

.contact-us .form form .form-wrapper .input-div input {
	width: 100%;
}

.contact-us .form form .form-wrapper button {
	width: 100%;
	background: var(--blackish-color);
	color: var(--smoke-white);
	height: 48px;
	font-size: 1.1rem;
	font-weight: 500;
	border: none;
	outline: none;
	transition: all 0.3s ease-in-out;
}

.contact-us .form form .form-wrapper button:hover {
	background: black;
	color: white;
	cursor: pointer;
}

@media screen and (max-width: 1200px) {
	.contact-us {
		padding: 6rem 1rem;
		gap: 4rem;
	}
}

@media screen and (max-width: 900px) {
	.contact-us {
		flex-direction: column;
	}

	.contact-us .info,
	.contact-us .form {
		flex-basis: unset;
	}
}

/* ------------------------------ Blog -------------------------- */
.blog {
	padding: 3rem 2rem 5rem 2rem;
}

.blog h1 {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 3rem;
}

.blog .blog-posts {
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	flex-wrap: wrap;
}

.blog .blog-posts .post {
	width: 100%;
	max-width: 450px;
	display: flex;
	flex-direction: column;
	margin-bottom: 0.5rem;
}

.blog .blog-posts .post .top {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.blog .blog-posts .post .top img {
	width: 100%;
	height: 230px;
	min-height: 200px;
	object-fit: fill;
	object-position: center;
}

.blog .blog-posts .post:hover .top img {
	transform: scale(1.01);
	transition: all 0.3s ease-in-out;
}

.blog .blog-posts .post .content {
	padding: 1.5rem;
}

.blog .blog-posts .post .top .content h2 {
	color: black;
}

.blog .blog-posts .post:hover .top .content h2 {
	color: var(--primary-hover);
	transition: all 0.3s ease-in-out;
}

.blog .blog-posts .post .top .content span {
	color: var(--primary);
}

.blog .blog-posts .post .top .content p {
	color: var(--text-gray);
	margin-top: 1rem;
}

.blog .blog-posts .post .bottom {
	padding: 0rem 1.5rem 1.5rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

@media screen and (max-width: 1000px) {
	.blog {
		padding: 3rem 1rem 5rem 1rem;
	}
}

@media screen and (max-width: 900px) {
	.blog .blog-posts {
		gap: 2rem;
	}
}

@media screen and (max-width: 500px) {
	.blog h1 {
		font-size: 2rem;
	}
}

/* ------------------------------------ Blog Post ------------------------------ */
.blog-post {
	padding: 4rem 2rem 6rem 2rem;
}

.blog-post h1 {
	font-size: 2.25rem;
	margin-bottom: 1.5rem;
}

.blog-post .row {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 4rem;
	justify-content: space-between;
}

.blog-post .row .content {
	grid-column: span 8;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.blog-post .row .recent-posts {
	grid-column: span 4;
}

.blog-post .row .content .info {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.blog-post .row .content img {
	width: 100%;
	height: auto;
}

.blog-post .row .content p {
	color: var(--text-gray);
	margin-top: 1rem;
}

.blog-post .row .recent-posts h2 {
	margin-bottom: 1.5rem;
}

.blog-post .row .recent-posts .wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.blog-post .row .recent-posts .wrapper .post {
	display: flex;
	gap: 1rem;
}

.blog-post .row .recent-posts .wrapper .post .desc {
	display: flex;
	flex-direction: column;
}

.blog-post .row .recent-posts .wrapper .post .desc .category {
	color: var(--primary);
}

.blog-post .row .recent-posts .wrapper .post .desc .createdAt {
	margin-top: auto;
}

.blog-post .row .recent-posts .wrapper .post .desc h3 {
	font-size: 1rem;
	color: var(--blackish-color);
}

.blog-post .row .recent-posts .wrapper .post:hover h3 {
	color: var(--primary-hover);
	transition: all 0.3s ease-in-out;
}

.blog-post .row .recent-posts .wrapper .post .image img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	object-position: center;
}

@media screen and (max-width: 1200px) {
	.blog-post {
		padding: 4rem 1rem 6rem 1rem;
	}

	.blog-post .row {
		gap: 3rem;
	}
}

@media screen and (max-width: 900px) {
	.blog-post .row {
		gap: 3rem 0rem;
	}

	.blog-post h1 {
		font-size: 2rem;
	}

	.blog-post .row .content {
		grid-column: span 12;
	}

	.blog-post .row .recent-posts {
		grid-column: span 12;
	}
}

/* ------------------------------ 404----------------------- */
.page-not-found {
	min-height: 90vh;
	padding: 4rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0rem;
	align-items: center;
}

.page-not-found img {
	width: 100%;
	max-width: 400px;
	height: auto;
}

.page-not-found h1 {
	margin-top: 1.5rem;
	font-size: 2.25rem;
	text-align: center;
}

.page-not-found p {
	color: var(--text-gray);
	text-align: center;
}

.page-not-found a {
	margin-top: 2rem;
}

/* Contact Response Starts*/
.contactStatus {
	min-height: 90vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contactStatus .desc {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.contactStatus .desc h1 {
	font-size: 2.25rem;
	text-align: center;
}

.contactStatus .desc p {
	color: var(--text-gray);
	margin-bottom: 2rem;
}

/* --------------------Error---------------------- */
.error .error-message {
	display: block;
	margin-top: 4px;
	color: red;
}