@font-face {
	font-family: Metropolis-Black;
	src: url('../fonts/Metropolis-Black.otf');
}
@font-face {
	font-family: Metropolis-ExtraBold;
	src: url('../fonts/Metropolis-ExtraBold.otf');
}
@font-face {
	font-family: Metropolis-Bold;
	src: url('../fonts/Metropolis-Bold.otf');
}
@font-face {
	font-family: Metropolis-Regular;
	src: url('../fonts/Metropolis-Regular.otf');
}
@font-face {
	font-family: Silka-Regular;
	src: url('../fonts/Silka-Regular.otf');
}
:root {
	--black: rgba(0, 0, 0, 0.8);
	--blue: #1058e2;
	--darkblue: #0637a0;
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	transition: 0.2s;
	text-decoration: none;
}
body {
	font-family: Metropolis-Black;
}
header {
	width: 100%;
	position: fixed;
	background: transparent;
	z-index: 19;
	position: fixed;
	top: 0;
	box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.2), 1px 1px 12px rgba(0, 0, 0, 0.2);
	background: #fff;
	/* padding: 10px 0; */
}
header.scroll {
	background: #fff;
	box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.2), 1px 1px 12px rgba(0, 0, 0, 0.2);
}
.wrapper {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 40px;
}
header .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 40px;
}
header .logo,
header nav ul {
	display: flex;
	align-items: center;
}
header .logo .logo-img {
	width: 60px;
}
header .logo .logo-text.white {
	width: 160px;
	margin-left: -24px;
}
header .logo .logo-text.blue {
	width: 160px;
	display: none;
	margin-left: 6px;
}
/* header.scroll .logo .logo-text.blue {
	display: block;
} */
/* header.scroll .logo .logo-text.white {
	display: none;
} */
header nav ul {
	gap: 24px;
}
header nav ul li {
	font-size: 18px;
	font-weight: 700;
	list-style: none;
	cursor: pointer;
}
header nav ul li a {
	font-family: Metropolis-ExtraBold;
	text-decoration: none;
	color: #000000;
}
header.scroll nav ul li a {
	color: var(--black);
}
header nav ul li a:hover {
	text-decoration: underline;
}
header .toggle-nav .fa-xmark,
header.scroll .toggle-nav .fa-bars {
	color: var(--blue);
	cursor: pointer;
}
header .toggle-nav .fa-bars {
	color: #fff;
}
header .sidebar-nav {
	width: 240px;
	height: 100vh;
	position: fixed;
	top: 0;
	right: -100%;
	display: block;
	background: #fff;
	box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.2), 1px 1px 12px rgba(0, 0, 0, 0.2);
	padding: 24px;
	transition: 0.5s;
	z-index: 10;
}
header .sidebar-nav.active {
	right: 0;
}
header .sidebar-nav .close-sidebar {
	position: absolute;
	top: 40px;
	right: 40px;
	color: var(--blue);
	cursor: pointer;
}
header .sidebar-nav nav {
	display: block;
	margin-top: 60px;
}
header .sidebar-nav nav ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}
.hero {
	width: 100%;
	display: flex;
	align-items: center;
	background: url(../images/hero-bg.png) center;
	background-size: cover;
	padding: 126px 0 40px;
}
.section {
	min-height: 70vh;
	display: flex;
	align-items: center;
}
.hero .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flex-column {
	display: flex;
	flex-direction: column;
}
.hero h1 {
	max-width: 380px;
	font-size: 108px;
	font-weight: 900;
	line-height: 100px;
	color: #fff;
}
.hero h1.bg-fill {
	background: linear-gradient(to right, #030810, #1058e2);
	padding: 10px;
}
.hero lottie-player {
	width: 480px;
	height: 480px;
}
.about {
	min-height: calc(100vh - 70px);
	background: linear-gradient(to right, #fff, #f0efef);
	padding: 50px 0 0;
}
.about .wrapper {
	display: flex;
	align-items: center;
	gap: 40px;
}
.about .img-about {
	width: 220px;
	position: relative;
}
.about .img-about img {
	width: 220px;
	position: relative;
	z-index: 1;
}
.about .img-about .layer-img {
	width: 80%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(16, 88, 226, 0.05);
	z-index: 1;
}
.about .img-about .layer-bg {
	width: 200px;
	height: 220px;
	position: absolute;
	top: -28px;
	left: -50px;
	background: #303133;
	border: 1px solid #707070;
	z-index: 0;
}
.about .img-about .layer-blue-bottom-right {
	width: 40px;
	height: 40px;
	position: absolute;
	bottom: 0;
	right: 0;
	background: #0b46cc;
}
.about .img-about .layer-blue-left {
	width: 80px;
	/* height: 300px; */
	position: absolute;
	top: -28px;
	left: -50px;
	background: #0b46cc;
	mix-blend-mode: multiply;
	z-index: 2;
}
.about .img-about .layer-blue-top-left {
	width: 80px;
	height: 28px;
	position: absolute;
	top: -28px;
	left: -50px;
	background: #0b46cc;
	border: 1px solid #707070;
	z-index: 3;
}
.about h1 {
	margin-bottom: 16px;
}
.about h1,
.press-release h1,
.meet-partners h1,
.our-services h1,
.contact-us .contact-box h1 {
	font-size: 48px;
}
.about h1,
.about p {
	color: var(--black);
}
h1 span {
	color: var(--blue);
}
.about p {
	font-family: Silka-Regular;
	font-size: 18px;
	line-height: 28px;
}
.about button {
	font-size: 18px;
	font-weight: 900;
	color: #0b46cc;
	background: #fff;
	border: 1px solid #1058e2;
	border-radius: 8px;
	margin-top: 16px;
	padding: 12px 16px;
}
.tagline {
	color: white;
	font-size: 12px; /* Adjust the size as needed */
	font-weight: 00;
	display: block;
	margin-top: 10px; /* Adjust spacing below the logo if necessary */
	text-align: right; /* Center-align under the logo */
}
button {
	cursor: pointer;
}
button:hover {
	transform: scale(1.04);
}
.press-release {
	position: relative;
	background: url('../images/press-release-bg.jpg') center;
	background-size: cover;
}
.blank {
	width: 100%;
	height: 100px;
	background: #fff;
}
.blank.gradient {
	background: linear-gradient(to right, #fff, #f0efef);
}
.press-release .wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 80px;
}
.press-release h1,
.meet-partners h1,
.our-services h1,
.contact-us .contact-box h1 {
	font-size: 48px;
	color: #fff;
}
.press-release .card-wrapper,
.our-services .card-wrapper {
	display: flex;
	gap: 32px;
	margin-top: 40px;
}
.press-release .card-wrapper .card {
	width: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	background: #fff;
	border-radius: 28px 28px 0 0;
	padding: 40px 24px 80px;
	margin: 0 auto;
}
.press-release .card-wrapper .card h2 {
	text-align: center;
	color: var(--darkblue);
	margin-bottom: 8px;
}
.press-release .card-wrapper .card img {
	width: 92px;
}
.press-release .card-wrapper hr {
	display: none;
}
.meet-partners {
	min-height: calc(100vh - 100px);
}
.meet-partners .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.meet-partners h1 {
	color: var(--black);
}
.meet-partners .slider-wrapper {
	width: 80%;
	margin-top: 60px;
}
.meet-partners .slider-wrapper .slider {
	overflow: hidden;
	margin: 0 auto 40px;
}
.meet-partners .slider-wrapper .slider .slide {
	display: none;
	overflow: hidden;
	animation-name: fade;
	animation-duration: 0.4s;
}
.meet-partners .slider-wrapper .slider #slide-one {
	display: block;
}
@keyframes fade {
	from {
		opacity: 0.4;
	}
	to {
		opacity: 1;
	}
}
.meet-partners .slider-wrapper .slider .slide .img-wrapper,
.meet-partners .slider-wrapper .slider .slide .img-wrapper div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}
.meet-partners .slider-wrapper .slider .slide .img-wrapper div {
	width: 100%;
}
.meet-partners .slider-wrapper .slider .slide .img-wrapper img {
	width: 150px;
	height: 150px;
	margin: 0 auto;
}
.meet-partners .slider-wrapper .dot-wrapper {
	margin: 0 auto;
	text-align: center;
}
.meet-partners .slider-wrapper .dot {
	display: inline-block;
	background: #d3d3d3;
	border-radius: 50%;
	padding: 7px;
	margin: 10px 5px;
	cursor: pointer;
}
.meet-partners .slider-wrapper .active {
	background: var(--blue);
}
.our-services {
	position: relative;
	padding: 80px 0;
}
.our-services .our-services-bg {
	width: 100%;
	min-height: 300px;
	position: absolute;
	top: 100px;
	left: 0;
	background: url('../images/our-services-bg.jpg');
}
.our-services .wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.our-services .card-wrapper {
	width: 100%;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
}
.our-services .card-wrapper .card {
	width: 100%;
	max-width: 316px;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.2), 1px 1px 12px rgba(0, 0, 0, 0.2);
	border-radius: 24px;
	padding: 24px 28px;
}
.our-services .card-wrapper .card:hover {
	box-shadow: 1px 1px 12px rgba(19, 87, 215, 0.5),
		1px 1px 12px rgba(19, 87, 215, 0.5);
}
.our-services .card-wrapper .card img {
	width: 40px;
}
.our-services .card-wrapper .card h2 {
	font-size: 28px;
	line-height: 24px;
	color: var(--blue);
	margin-top: 16px;
	text-decoration: none;
}
.our-services .card-wrapper .card h4 {
	font-size: 16px;
	color: var(--black);
	text-decoration: none;
}
.our-services .card-wrapper .card ul {
	width: 100%;
	margin-top: 20px;
}
.our-services .card-wrapper .card ul li {
	font-family: Metropolis-Bold;
	font-weight: 700;
	font-size: 14px;
	line-height: 22px;
	list-style: none;
	color: #3c3c3c;
}
.our-services .card-wrapper .card ul li.link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	color: var(--darkblue);
}
.our-services .card-wrapper .link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: var(--darkblue);
}

.our-services .card-wrapper .card ul li img {
	width: 10px;
	margin-right: 6px;
}
.our-services .card-wrapper .card ul li img.label {
	width: 64px;
	margin-right: unset;
}
.contact-us {
	margin-bottom: 60px;
}
.contact-us .wrapper,
.contact-us a {
	display: flex;
	justify-content: center;
}
.contact-us a {
	width: 100%;
	text-decoration: none;
}
.contact-us .contact-box {
	width: 720px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: #fff;
	background: url('../images/contact-box-bg.png') center;
	background-size: cover;
	border-radius: 16px;
	padding: 24px;
	cursor: pointer;
}
.contact-us .contact-box:hover {
	transform: scale(1.04);
}
.contact-us .contact-box h2 {
	font-size: 28px;
}
.contact-us .contact-box h2,
footer {
	font-family: Metropolis-Bold;
}
.contact-us .contact-box img.arrow-next {
	width: 36px;
	margin-top: 2px;
}
footer {
	background: url('../images/footer-bg.jpg') center;
	background-size: cover;
	padding: 60px 0;
}
footer .brand-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	color: #fff;
}
footer .brand-info a {
	text-decoration: none;
	color: #fff;
}
footer .brand-info a:hover {
	text-decoration: underline;
}
footer .brand-info div {
	display: flex;
	align-items: center;
	gap: 16px;
}
footer .brand-info div img {
	width: 28px;
}
footer h4.copyright {
	color: rgba(228, 228, 228, 0.5);
	margin-top: 20px;
}

/* General Styles */
body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	margin-top: 50px;
	padding: 0;
	background: linear-gradient(120deg, #f8f9fa, #e1e5f2);
	color: #151515;
	overflow-x: hidden;
}

.hidden {
	display: none;
}

/* Header Section */
.header {
	height: 100vh;
	background: linear-gradient(120deg, #007bff, #6610f2);
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.site-title {
	font-size: 3rem;
	margin: 0;
}

.site-tagline {
	font-size: 1.5rem;
	margin-top: 10px;
}

.scroll-down {
	margin-top: 20px;
	font-size: 1.2rem;
	animation: bounce 1.5s infinite;
}

/* Animations */
@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
}

.animate-fadeIn {
	animation: fadeIn 1s ease forwards;
}

.animate-slideUp {
	animation: slideUp 1.5s ease forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Web Development Section */
.web-development {
	padding: 50px 20px;
	text-align: center;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 30px;
	color: #007bff;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.features-grid2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.feature-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
	text-align: left;
}

.feature-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.feature-card h3 {
	font-size: 1.5rem;
	margin: 10px 0;
	color: #007bff;
	padding: 0 10px;
}

.feature-card p {
	font-size: 1rem;
	padding: 0 10px 10px;
	color: #555;
}

.feature-card:hover {
	transform: translateY(-10px);
}

/* Index card css  */

.feature-card2 {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
	text-align: left;
}

.feature-card2 img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.feature-card2:hover {
	transform: translateY(-10px);
}

/* Popup Modal */
.popup-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
}

.popup-content {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
}

.close-btn {
	background-color: #007bff;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
}

.close-btn:hover {
	background-color: #0056b3;
}

@media (min-width: 1400px) {
	header .wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 14px 40px;
	}
	header .logo,
	header nav ul {
		display: flex;
		align-items: center;
	}
	header .logo .logo-img {
		width: 68px;
	}
	header .logo .logo-text.white {
		width: 240px;
		margin-left: -24px;
	}
	header .logo .logo-text.blue {
		width: 176px;
		margin-left: 10px;
	}
	header nav ul {
		gap: 48px;
	}
	header nav ul li {
		font-size: 21px;
	}
	.wrapper {
		min-width: 1280px;
	}
	.hero h1 {
		max-width: 500px;
		font-size: 140px;
		line-height: 140px;
	}

	.hero h2 {
		align-items: center;
	}

	.hero lottie-player {
		width: 600px;
		height: 600px;
	}
	.about .wrapper {
		gap: 60px;
	}
	.about .img-about,
	.about .img-about img {
		width: 400px;
	}
	.about .img-about .layer-bg {
		width: 380px;
		height: 360px;
	}
	.about .img-about .layer-bg,
	.about .img-about .layer-blue-left,
	.about .img-about .layer-blue-top-left {
		top: -40px;
		left: -68px;
	}
	.about .img-about .layer-blue-bottom-right {
		width: 56px;
		height: 56px;
	}
	.about .img-about .layer-blue-left {
		width: 112px;
		height: 360px;
	}
	.about .img-about .layer-blue-top-left {
		width: 112px;
		height: 41px;
	}
	.about h1 {
		margin-bottom: 16px;
	}
	.about h1,
	.press-release h1,
	.meet-partners h1,
	.our-services h1,
	.contact-us .contact-box h1 {
		font-size: 45px;
	}
	.about p {
		font-size: 20px;
		line-height: 30px;
	}
	.press-release .card-wrapper {
		margin-top: 60px;
	}
	.press-release .card-wrapper,
	.our-services .card-wrapper {
		gap: 40px;
	}
	.press-release .card-wrapper .card {
		width: 280px;
		gap: 28px;
		padding: 60px 24px 100px;
	}
	.press-release .card-wrapper .card h2 {
		font-size: 32px;
	}
	.press-release .card-wrapper .card img {
		width: 120px;
	}
	.meet-partners .slider-wrapper .slider .slide .img-wrapper img {
		width: 170px;
		height: 170px;
	}
	.meet-partners .slider-wrapper .dot {
		padding: 8px;
	}
	.our-services .our-services-bg {
		min-height: 400px;
	}
	.our-services .card-wrapper {
		gap: 40px;
	}
	.our-services .card-wrapper .card {
		width: 100%;
		max-width: 356px;
		/* min-height: 336px; */
		padding: 28px 40px;
	}
	.our-services .card-wrapper .card img {
		width: 100%;
		height: 90%;
		object-fit: cover;
	}
	.our-services .card-wrapper .card h2 {
		font-size: 32px;
		line-height: 26px;
		margin-top: 18px;
	}
	.our-services .card-wrapper .card h4 {
		font-size: 18px;
	}
	.our-services .card-wrapper .card ul li {
		font-size: 16px;
		line-height: 24px;
	}
	.our-services .card-wrapper .card ul li img {
		width: 12px;
		margin-right: 8px;
	}
	.contact-us .contact-box {
		width: 800px;
		gap: 10px;
	}
	.contact-us .contact-box h2 {
		font-size: 32px;
	}
	.contact-us .contact-box img.arrow-next {
		width: 40px;
		margin-top: 8px;
	}
	footer .brand-info {
		gap: 14px;
	}
	footer .brand-info div {
		gap: 18px;
	}
	footer .brand-info div img {
		width: 32px;
	}
	footer h4 {
		font-size: 18px;
	}
	footer h4.copyright {
		margin-top: 24px;
	}
}

@media (max-width: 1400px) {
	.meet-partners .slider-wrapper .slider .slide .img-wrapper img {
		width: 140px;
		height: 140px;
	}
}

@media (min-width: 876px) {
	.mobile {
		display: none !important;
	}
}

@media (max-width: 876px) {
	header nav {
		display: none;
	}
	header nav ul li a {
		color: var(--black);
	}
	.hero .wrapper {
		flex-direction: column-reverse;
	}
	.hero h1 {
		font-size: 50px;
		line-height: 90px;
		text-align: center;
	}
	.hero lottie-player {
		width: 320px;
		height: 320px;
	}
	.meet-partners .slider-wrapper .slider .slide .img-wrapper img {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 720px) {
	.wrapper,
	.press-release .card-wrapper,
	.our-services .card-wrapper {
		padding: 0 24px;
	}
	header .wrapper {
		padding: 14px 24px;
	}
	header .sidebar-nav .close-sidebar {
		right: 24px;
	}
	.about .wrapper {
		flex-direction: column;
	}
	.about h1 {
		margin-top: 24px;
	}
	.about h1,
	.press-release h1,
	.meet-partners h1,
	.our-services h1,
	.contact-us .contact-box h1 {
		font-size: 28px;
	}
	.about p {
		font-size: 14px;
	}
	.meet-partners h1 {
		text-align: center;
	}
	.meet-partners .slider-wrapper .dot {
		padding: 6px;
	}
	.contact-us .contact-box {
		width: 100%;
		gap: 6px;
	}
	.contact-us .contact-box h2 {
		font-size: 18px;
		font-weight: 500;
	}
}

@media (max-width: 567px) {
	.press-release .card-wrapper {
		flex-direction: column;
		gap: unset;
		background: #fff;
		border-radius: 24px 24px 0 0;
	}
	.press-release .card-wrapper .card:first-child {
		padding-bottom: 40px;
	}
	.press-release .card-wrapper hr {
		display: block;
	}
	.press-release .card-wrapper .card:last-child {
		border-radius: unset;
		padding-top: 40px;
	}
}

@media (max-width: 480px) {
	.meet-partners .slider-wrapper {
		width: 100%;
	}
}

@media (max-width: 376px) {
	.wrapper,
	.press-release .card-wrapper,
	.our-services .card-wrapper {
		padding: 0 16px;
	}
	header .wrapper {
		padding: 14px 16px;
	}
	header .logo .logo-img {
		width: 48px;
	}
	header .logo .logo-text {
		display: none;
	}
	header .sidebar-nav .close-sidebar {
		right: 16px;
	}
	.hero h1 {
		font-size: 48px;
		line-height: 70px;
	}
	.hero lottie-player {
		width: 280px;
		height: 280px;
	}
	.about .img-about,
	.about .img-about img {
		width: 280px;
	}
	.about .img-about .layer-bg,
	.about .img-about .layer-blue-left {
		height: 270px;
	}
	.our-services .card-wrapper .card ul li img.label {
		display: none;
	}
}

@media (max-width: 312px) {
	.about .img-about,
	.about .img-about img {
		width: 260px;
	}
	.about .img-about .layer-bg,
	.about .img-about .layer-blue-left {
		height: 250px;
	}
}
