/* variable  */
* {
	font-family: "Roc Grotesk", "sans-serif";
}
:root {
	--color-primary: #3872f7;
	--color-white: #fff;
	--text-heading: #272727;
}
/* common style  */
.btn {
	font-family: "Roc Grotesk";
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.48px;
	line-height: 1em;
	text-transform: uppercase;
	border-radius: 12px;
	border: 1px solid var(--color-white);
	box-shadow:
		0 0 6px 2px rgba(0, 0, 0, 0.04) inset,
		0 2px 6px 0 rgba(183, 183, 183, 0.3);
	display: inline-flex;
	padding: 14px 18px;
	justify-content: center;
	gap: 4px;
	align-items: center;
	text-decoration: none !important;
}
.btn svg {
	transition: all 0.2s ease;
}
.btn:hover svg {
	transform: translateX(5px);
}
.btn.btn-primary {
	background: var(--Brand-Primary, #3872f7);
	color: var(--color-white);
}
.btn.btn-primary:hover {
	background-color: var(--color-white);
	color: var(--text-heading);
}
/* reset paragraph margin  */

@media (max-width: 768px) {
	br {
		display: none !important;
	}
}

/* header style  */
.mobile-navigation ul {
	border-radius: 16px;
	border: 1px solid var(--Base-White, #fff);
	background: #fff;
	box-shadow:
		0 0 6px 2px rgba(0, 0, 0, 0.04) inset,
		0 2px 6px 0 rgba(183, 183, 183, 0.3);

	background: #fff;
	padding: 8px !important;
}
.mobile-navigation ul a {
	font-size: 14px;
	line-height: 1em;
	display: flex;
	padding: 13px 16px;
	align-items: center;
}

.mobile-navigation .menu-item:hover {
	border-radius: 8px;
	background: linear-gradient(
		180deg,
		rgba(194, 214, 255, 0.4) 0%,
		rgba(235, 241, 255, 0.4) 100%
	);
}
.mobile-navigation .menu-item.current-menu-item.current_page_item {
	border-radius: 8px;
	background: linear-gradient(
		180deg,
		rgba(194, 214, 255, 0.4) 0%,
		rgba(235, 241, 255, 0.4) 100%
	);
}

.header-navigation .menu {
	padding: 8px !important;
	border-radius: 12px;
	border: 1px solid #fff;
	background: #fff;
	box-shadow:
		0 0 6px 2px rgba(0, 0, 0, 0.04) inset,
		0 2px 6px 0 rgba(183, 183, 183, 0.3);
}
.main-navigation .primary-menu-container > ul li {
	display: flex;
	padding: 12px 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.menu-item.current-menu-item.current_page_item {
	border-radius: 8px;
	background: #f5f8ff;
}
.menu-item.current-menu-item.current_page_item a {
	color: var(--color-primary) !important;
}
.menu-item.current-menu-item:hover {
	border-radius: 8px;
	background: #f5f8ff;
	color: var(--color-primary);
}

/* brand slider marquee style  */
.brand-slider .swiper-wrapper {
	transition-timing-function: linear !important;
	display: flex;
	align-items: center;
	will-change: transform;
}

/* counter bg effect  */
.counter-bg-effect {
	filter: blur(100px);
}
.counter-number .elementor-counter-number-wrapper span {
	background-clip: text !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
}
.number-1 .elementor-counter-number-wrapper span {
	background: linear-gradient(180deg, #4bd0ff 0%, #d5f4fe 100%);
}
.number-2 .elementor-counter-number-wrapper span {
	background: linear-gradient(180deg, #45db9f 0%, #b3f9e0 100%);
}
.number-3 .elementor-counter-number-wrapper span {
	background: linear-gradient(180deg, #8674ff 0%, #dfd9ff 100%);
}

@media (min-width: 1024px) {
	/* work stacking  */
	.work-card-stack {
		position: relative !important;
		height: 300vh !important;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}

	.work-card {
		position: sticky !important;

		transition: transform 0.3s ease;
		z-index: 1;
	}

	/* Staggered stacking */
	.work-1 {
		top: 100px !important;
		z-index: 4;
	}
	.work-2 {
		top: 130px !important;
		z-index: 3;
	}
	.work-3 {
		top: 160px !important;
		z-index: 2;
	}
	.work-4 {
		top: 190px !important;
		z-index: 1;
	}
}

.e-n-accordion details {
	border-radius: 24px !important;
	border: 1px solid #fff !important;
	/* Button */
	box-shadow:
		0 0 6px 2px rgba(0, 0, 0, 0.04) inset,
		0 2px 6px 0 rgba(183, 183, 183, 0.3);
	overflow: hidden;
}

.e-n-accordion-item-title[aria-expanded="false"] {
	padding-bottom: 36px !important;
	transition: all 0.3s ease;
}
.elementor-widget.elementor-widget-text-editor {
	transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
	.e-n-accordion details {
		border-radius: 16px !important;
	}
	.e-n-accordion-item-title[aria-expanded="false"] {
		padding-bottom: 24px !important;
	}
}

/* footer  */

footer#colophon.site-footer {
	margin-top: 220px !important;
}

.global-cta {
	border-radius: 32px;
	position: relative;
	background: var(--color-primary);
	padding: 67px;
	margin-bottom: 40px;
	margin-top: -20%;
}
.global-cta-content {
	display: flex;
	max-width: 780px;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
}
.global-cta-content h2 {
	color: #fff !important;
}
.global-cta-content p {
	color: #fff !important;
}
.footer-cta-button-group {
	gap: 8px;
	display: flex;
}
a.footer-cta-button {
	padding: 18px;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	gap: 4px;
	display: inline-flex;
	color: #242424;
	align-items: center;
}
a.footer-cta-button svg {
	margin-top: -3px;
}
a.footer-cta-button.button1 {
	background: #cafba7;
	border-radius: 12px;
	text-decoration: none !important;
}
a.footer-cta-button.button-2 {
	background: #fff;
	border-radius: 12px;
	text-decoration: none !important;
}
.main-footer-grid {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 24px;
}

.footer-contact-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 32px;
	border: 1px solid rgba(242, 245, 248, 0.2);
	padding: 24px;
	text-align: left;
}
.footer-contact-info p {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.75px;
	opacity: 0.5;
	text-transform: uppercase;
}
.footer-contact-info a {
	color: #fff !important;
	font-size: 38px;
	font-weight: 700;
	letter-spacing: -1.14px;
}
.footer-social-links-wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.footer-social-box {
	text-align: left;
	text-decoration: none !important;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 70px;
	border-radius: 24px;
	border: 1px solid rgba(225, 228, 234, 0.2);
}
.footer-social-box:hover {
	background: var(--color-primary);
}
.footer-social-box div {
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.48px;
	text-transform: uppercase;
	color: #fff;
	opacity: 0.5;
}
.footer-social-box img {
	width: 24px;
	height: 24px;
}
/* Blinking Animation Keyframes */
@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}

svg.cta-profile-img-circle {
	position: absolute;
	animation: blink 2s ease-in-out infinite;
}
.big-left-circle {
	left: 50px;
	top: 50%;
}
.big-right-circle {
	right: 50px;
	top: 45%;
}
.small-right-bottom-circle {
	left: 30%;
	bottom: 50px;
}
.small-right-top-circle {
	right: 30%;
	top: 50px;
}

@media (max-width: 1024px) {
	.main-footer-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}
	footer#colophon.site-footer {
		margin-top: 160px !important;
	}
}
@media (max-width: 767px) {
	.global-cta .cta-profile-img-circle {
		display: none !important;
	}
	.global-cta {
		padding: 36px;
	}
	.footer-social-box {
		gap: 50px;
		padding: 24px;
	}
	footer#colophon.site-footer {
		margin-top: 80px !important;
	}
}
@media (max-width: 576px) {
	.global-cta .cta-profile-img-circle {
		display: none !important;
	}
	.global-cta {
		padding: 28px;
	}
	.footer-cta-button-group {
		flex-direction: column;
	}
	.global-cta-content h2 {
		font-size: 24px !important;
	}
	.footer-social-box {
		gap: 30px;
		padding: 16px;
	}
	.footer-social-links-wrap {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.footer-contact-info a {
		font-size: 28px;
		letter-spacing: 1px;
	}
	footer#colophon.site-footer {
		margin-top: 60px !important;
	}
}
