@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&amp;family=Roboto+Slab:wght@300;400;500;600;700;800;900&amp;display=swap");
@import url("mobile-menu.css");

html {
	font-family: "Poppins", sans-serif;
}

/* modal */
.modal {
	max-width: 800px !important;
}

/* width */
.scrollbarLight::-webkit-scrollbar,
.scrollbarDark::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* Track */
.scrollbarLight::-webkit-scrollbar-track {
	border-radius: 100vh;
	background: #e9e3e3;
}

/* Handle */
.scrollbarLight::-webkit-scrollbar-thumb {
	background: #797979;
	border-radius: 100vh;
	border: 5px solid #9c9fa1;
}

/* Handle on hover */
.scrollbarLight::-webkit-scrollbar-thumb:hover {
	background: #cfd0d3;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
}

/* Track */
.scrollbarDark::-webkit-scrollbar-track {
	border-radius: 100vh;
	background: #000000;
}

/* Handle */
.scrollbarDark::-webkit-scrollbar-thumb {
	background: #000000;
	border-radius: 100vh;
	border: 5px solid #4f4f4f;
}

/* Handle on hover */
.scrollbarLight::-webkit-scrollbar-thumb:hover {
	background: #111111;
}

.linked {
	color: white !important;
}

/* input remove auto fill background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
	-webkit-text-fill-color: gray;
	/* -webkit-box-shadow: 0 0 0px 1000px transparent inset; */
	transition: background-color 5000s ease-in-out 0s;
	background: none !important;
}

/* active color */
.is-active {
	color: #fa5252 !important;
}

/* slider img */
.slick-slide {
	padding: 30px;
}

.fillter-btn.is-checked {
	color: #fa5252;
}

.mymix {
	min-height: 50vh;
	margin-left: -10px;
	margin-right: -10px;
}

.three-col .isotop-item,
.three-col .grid-sizer {
	width: 33.33%;
	padding: 0 10px;
}

.two-col .isotop-item,
.two-col .grid-sizer {
	width: 50%;
	padding: 0 10px;
}

@media (max-width: 1199px) {

	.three-col .isotop-item,
	.three-col .grid-sizer {
		width: 50%;
	}
}

@media (max-width: 576px) {

	.three-col .isotop-item,
	.three-col .grid-sizer,
	.two-col .isotop-item,
	.two-col .grid-size {
		width: 100%;
	}
}

.three-col .isotop-item>div,
.two-col .isotop-item>div {
	margin-bottom: 20px;
}

.brand-img {
	max-width: 100% !important;
	width: auto !important;
	height: auto !important;
	overflow: hidden;
	text-align: center;
}

/* owl-carousel */
.owl-carousel .owl-stage {
	display: flex;
	align-items: center;
}

.owl-carousel .owl-stage .owl-item {
	padding: 20px 30px;
}

.fix {
	display: none;
}

.close {
	position: absolute;
	top: -12.5px;
	right: -12.5px;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 50px !important;
	height: 50px !important;
	top: -20px !important;
	right: -20px !important;
	border-radius: 50%;
}

.close-light {
	background-image: url(../images/icons/closelight.jpg);
}

.close-dark {
	background-image: url(../images/icons/closeDark.png);
}

.modal a.close-modal {
	display: none;
}

/* preloader */

#preloader {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 999999999999999999;
	display: flex;
}

#preloader:before,
#preloader:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	z-index: -1;
	background-color: #000;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

#preloader:after {
	left: auto;
	right: 0;
}

#preloader .loader_line {
	margin: auto;
	width: 1px;
	height: 250px;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.8s ease 0s;
	-o-transition: all 0.8s ease 0s;
	transition: all 0.8s ease 0s;
}

.loader_line:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 0%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #fff;
	-webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
	-o-animation: lineheight 1000ms ease-in-out 0s forwards;
	animation: lineheight 1000ms ease-in-out 0s forwards;
}

.loader_line:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #999999;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-animation: lineround 1200ms linear 0s infinite;
	-o-animation: lineround 1200ms linear 0s infinite;
	animation: lineround 1200ms linear 0s infinite;
	animation-delay: 2000ms;
}

@keyframes lineheight {
	0% {
		height: 0%;
	}

	100% {
		height: 100%;
	}
}

@keyframes lineround {
	0% {
		-webkit-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	100% {
		-webkit-transform: translateY(200%);
		-ms-transform: translateY(200%);
		-o-transform: translateY(200%);
		transform: translateY(200%);
	}
}

.portfolio_list {
	min-height: 50vh;
}

/*hiding all*/
.preloaded .loader_line:after {
	opacity: 0;
}

.preloaded .loader_line {
	opacity: 0;
	height: 100% !important;
}

.preloaded:before,
.preloaded:after {
	-webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
	-o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
	animation: preloadedzero 300ms ease-in-out 500ms forwards;
}

@keyframes preloadedzero {
	0% {
		width: 50%;
	}

	100% {
		width: 0%;
	}
}

/* media queries */
@media only screen and (max-width: 992px) {
	.close {
		top: -45px !important;
		right: 5px !important;
		width: 40px !important;
		height: 40px !important;
	}
}

.jquery-modal.blocker {
	z-index: 9999999999;
}

.close {
	filter: invert(0.9);
	transition: 0.3s;
}

.close:hover {
	filter: invert(1);
}

@media only screen and (min-width: 1700px) {
	.scroll-hide-1700 {
		overflow: hidden;
	}
}

/* Glass effect for cards */
/* Glass effect for cards */
.bg-glass {
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

html.dark .bg-glass {
	background-color: rgba(17, 17, 17, 0.6);
}

/* Sleek tech refresh */
:root {
	--tech-bg: #edf7fb;
	--tech-surface: rgba(255, 255, 255, 0.62);
	--tech-surface-strong: rgba(255, 255, 255, 0.82);
	--tech-border: rgba(20, 184, 166, 0.22);
	--tech-border-strong: rgba(6, 182, 212, 0.46);
	--tech-text: #172033;
	--tech-muted: #526377;
	--tech-cyan: #06b6d4;
	--tech-magenta: #d946ef;
	--tech-blue: #2563eb;
	--tech-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
	--tech-glow: 0 0 32px rgba(6, 182, 212, 0.18);
	--tech-radius: 22px;
}

html.dark {
	--tech-bg: #020617;
	--tech-surface: rgba(10, 20, 38, 0.72);
	--tech-surface-strong: rgba(15, 23, 42, 0.88);
	--tech-border: rgba(103, 232, 249, 0.22);
	--tech-border-strong: rgba(217, 70, 239, 0.42);
	--tech-text: #f8fafc;
	--tech-muted: #b6c3d8;
	--tech-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
	--tech-glow: 0 0 36px rgba(217, 70, 239, 0.16);
}

* {
	box-sizing: border-box;
}

html {
	scroll-padding-top: 96px;
}

body {
	color: var(--tech-text);
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background:
		radial-gradient(circle at 15% 12%, rgba(6, 182, 212, 0.22), transparent 28%),
		radial-gradient(circle at 85% 18%, rgba(217, 70, 239, 0.2), transparent 30%),
		radial-gradient(circle at 50% 92%, rgba(37, 99, 235, 0.14), transparent 34%);
}

.container {
	width: min(100%, 1280px);
	padding-left: clamp(1rem, 3vw, 1.5rem);
	padding-right: clamp(1rem, 3vw, 1.5rem);
}

.site-header {
	padding: 0.75rem 0.75rem 0;
}

.home-hero {
	min-height: calc(100vh - 6rem);
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.home-avatar {
	width: clamp(180px, 42vw, 280px);
	height: clamp(180px, 42vw, 280px);
	border: 1px solid rgba(255, 255, 255, 0.42);
	box-shadow: 0 24px 64px rgba(6, 182, 212, 0.24), 0 0 0 10px rgba(255, 255, 255, 0.08);
}

.home-title {
	font-size: clamp(2rem, 7vw, 3rem);
	line-height: 1.12;
	letter-spacing: 0;
}

.contact-email {
	overflow-wrap: anywhere;
}

.contact-form-title {
	font-size: clamp(1.55rem, 5vw, 2.25rem);
	line-height: 1.2;
	letter-spacing: 0;
}

.site-header-shell {
	border: 1px solid var(--tech-border);
	border-radius: 0 0 22px 22px;
	background: var(--tech-surface-strong);
	backdrop-filter: blur(22px) saturate(150%);
	-webkit-backdrop-filter: blur(22px) saturate(150%);
	box-shadow: var(--tech-shadow);
}

.futuristic-nav ul {
	align-items: center;
	gap: 0.45rem;
	border: 1px solid var(--tech-border);
	border-radius: 999px;
	padding: 0.45rem;
	background: var(--tech-surface);
	backdrop-filter: blur(20px) saturate(150%);
	-webkit-backdrop-filter: blur(20px) saturate(150%);
	box-shadow: var(--tech-shadow), var(--tech-glow);
}

.menu-item-two,
.menu-item-two-active,
.dark .menu-item-two,
.dark .menu-item-two-active {
	min-height: 44px;
	margin-left: 0;
	margin-right: 0;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	color: var(--tech-muted);
}

.menu-item-two:hover,
.menu-item-two-active,
.menu-item-two-active:hover,
.dark .menu-item-two:hover,
.dark .menu-item-two-active,
.dark .menu-item-two-active:hover {
	border-color: var(--tech-border-strong);
	background:
		linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(217, 70, 239, 0.2)),
		var(--tech-surface-strong);
	color: var(--tech-text);
	box-shadow: 0 10px 28px rgba(6, 182, 212, 0.14);
}

.dark-light-btn,
.menu-toggle-btn {
	border: 1px solid var(--tech-border);
	background: var(--tech-surface-strong) !important;
	color: var(--tech-text) !important;
	box-shadow: 0 12px 30px rgba(6, 182, 212, 0.12);
}

.dark-light-btn:hover,
.menu-toggle-btn:hover {
	border-color: var(--tech-border-strong);
	background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(217, 70, 239, 0.2)) !important;
	color: var(--tech-text) !important;
	transform: translateY(-1px);
}

.bg-glass,
.modal-container,
.about-box,
.portfolio_list-two-items > div,
#blog-grid > div,
.container div[class*="bg-[#eef5fa]"],
.container div[class*="bg-[#fff4f4]"],
.container div[class*="bg-[#fff1fb]"],
.container div[class*="bg-[#fcf9f2]"],
.container div[class*="bg-[#fcf4ff]"],
.lg\:flex > div > .flex.flex-wrap,
.dark .about-box {
	border: 1px solid var(--tech-border) !important;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28)),
		var(--tech-surface) !important;
	backdrop-filter: blur(22px) saturate(150%);
	-webkit-backdrop-filter: blur(22px) saturate(150%);
	box-shadow: var(--tech-shadow);
}

html.dark .bg-glass,
html.dark .modal-container,
html.dark .about-box,
html.dark .portfolio_list-two-items > div,
html.dark #blog-grid > div,
html.dark .container div[class*="bg-[#eef5fa]"],
html.dark .container div[class*="bg-[#fff4f4]"],
html.dark .container div[class*="bg-[#fff1fb]"],
html.dark .container div[class*="bg-[#fcf9f2]"],
html.dark .container div[class*="bg-[#fcf4ff]"],
html.dark .lg\:flex > div > .flex.flex-wrap,
html.dark .dark\:bg-\[\#111111\] {
	background:
		linear-gradient(145deg, rgba(15, 23, 42, 0.86), rgba(8, 13, 28, 0.64)),
		var(--tech-surface) !important;
	border-color: var(--tech-border) !important;
}

.bg-glass,
.modal-container {
	border-radius: var(--tech-radius) !important;
}

.about-box,
.portfolio_list-two-items > div,
#blog-grid > div,
.container div[class*="bg-[#eef5fa]"],
.container div[class*="bg-[#fff4f4]"],
.container div[class*="bg-[#fff1fb]"],
.container div[class*="bg-[#fcf9f2]"],
.container div[class*="bg-[#fcf4ff]"],
.lg\:flex > div > .flex.flex-wrap {
	border-radius: 18px !important;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.about-box:hover,
.portfolio_list-two-items > div:hover,
#blog-grid > div:hover,
.container div[class*="bg-[#eef5fa]"]:hover,
.container div[class*="bg-[#fff4f4]"]:hover,
.container div[class*="bg-[#fff1fb]"]:hover,
.container div[class*="bg-[#fcf9f2]"]:hover,
.container div[class*="bg-[#fcf4ff]"]:hover {
	transform: translateY(-4px);
	border-color: var(--tech-border-strong) !important;
	box-shadow: var(--tech-shadow), var(--tech-glow);
}

.after-effect {
	color: var(--tech-text);
	font-size: clamp(2rem, 5vw, 2.75rem);
	letter-spacing: 0;
}

.after-effect::after {
	width: clamp(4rem, 18vw, 12rem) !important;
	height: 3px;
	background: linear-gradient(90deg, var(--tech-cyan), var(--tech-magenta));
	box-shadow: 0 0 20px rgba(6, 182, 212, 0.36);
}

.socialbtn,
.resume-btn {
	border: 1px solid var(--tech-border);
	background: var(--tech-surface-strong) !important;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.socialbtn:hover,
.resume-btn:hover {
	border-color: var(--tech-border-strong);
	background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(217, 70, 239, 0.18)) !important;
	color: var(--tech-text) !important;
	transform: translateY(-2px);
}

.download-btn,
.transition-all.duration-300.ease-in-out.inline-block,
input[type="submit"] {
	border-radius: 999px !important;
}

.download-btn {
	position: relative;
	isolation: isolate;
	border: 1px solid rgba(255, 255, 255, 0.36);
	background: linear-gradient(135deg, var(--tech-cyan), var(--tech-blue), var(--tech-magenta)) !important;
	box-shadow: 0 18px 46px rgba(6, 182, 212, 0.28);
}

.download-btn:hover {
	filter: brightness(1.08);
	transform: translateY(-2px);
}

.fillter-btn {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	margin-bottom: 0.75rem;
	border: 1px solid var(--tech-border);
	border-radius: 999px;
	padding: 0.45rem 1rem;
	background: var(--tech-surface);
	color: var(--tech-muted) !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.fillter-btn:hover,
.fillter-btn.is-checked {
	border-color: var(--tech-border-strong);
	background: linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(217, 70, 239, 0.18));
	color: var(--tech-text) !important;
	box-shadow: var(--tech-glow);
}

input,
textarea,
select {
	max-width: 100%;
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--tech-cyan) !important;
	box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.14) !important;
}

.w-full.bg-\[\#edf2f2\],
.dark .dark\:bg-\[\#1c1c1c\] {
	height: 0.45rem !important;
	background: rgba(148, 163, 184, 0.22) !important;
	overflow: hidden;
}

.w-full.bg-\[\#edf2f2\] > div {
	height: 100% !important;
	background: linear-gradient(90deg, var(--tech-cyan), var(--tech-magenta)) !important;
	box-shadow: 0 0 18px rgba(6, 182, 212, 0.38);
}

.modal-container {
	max-width: calc(100vw - 1.5rem) !important;
	max-height: calc(100vh - 5rem);
}

.modal-container img {
	max-width: 100%;
}

.site-footer {
	margin-top: 1.5rem;
	border: 1px solid var(--tech-border);
	background: var(--tech-surface) !important;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

lord-icon {
	max-width: 100%;
}

.about-box lord-icon {
	flex: 0 0 auto;
	width: clamp(88px, 18vw, 150px) !important;
	height: clamp(88px, 18vw, 150px) !important;
}

.about-role-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	margin-bottom: 1.25rem;
	border: 1px solid var(--tech-border);
	border-radius: 18px;
	background: var(--tech-surface-strong);
	box-shadow: 0 14px 32px rgba(6, 182, 212, 0.12);
	font-size: 2rem;
}

.resume-card {
	display: flex;
	min-height: 148px;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0.35rem;
}

.resume-card .resume-date {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	min-height: 1.75rem;
	border: 1px solid var(--tech-border);
	border-radius: 999px;
	padding: 0.2rem 0.65rem;
	background: var(--tech-surface-strong);
	color: var(--tech-muted) !important;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

@media (min-width: 1024px) {
	.home-hero {
		min-height: 72vh;
	}

	.contact-form-title {
		font-size: 2.25rem;
	}

	.site-header {
		padding: 0;
	}

	.site-header-shell {
		border: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
}

@media (max-width: 767px) {
	html {
		scroll-padding-top: 86px;
	}

	.container {
		padding-left: 0.875rem;
		padding-right: 0.875rem;
	}

	.min-h-screen {
		padding-top: 5.25rem;
	}

	.after-effect {
		display: block;
		font-size: 2rem;
	}

	.after-effect::after {
		display: block;
		position: static;
		margin-top: 0.65rem;
		transform: none;
		content: "";
	}

	h3.text-4xl,
	h4.text-5xl,
	.text-\[35px\] {
		font-size: 1.75rem !important;
		line-height: 1.2 !important;
	}

	.text-5xl {
		font-size: 2rem !important;
		line-height: 1.15 !important;
	}

	.about-box {
		flex-direction: column;
		padding: 1.15rem !important;
	}

	.three-col .isotop-item,
	.three-col .grid-sizer,
	.two-col .isotop-item,
	.two-col .grid-sizer {
		width: 100%;
	}

	.modal-container {
		top: 54% !important;
		padding: 1rem !important;
		border-radius: 18px !important;
	}

	.close {
		top: -48px !important;
		right: 0 !important;
	}

	#blog-grid {
		gap: 1rem !important;
	}

	#blog-grid > div,
	.portfolio_list-two-items > div {
		padding: 1rem !important;
	}
}

@media (max-width: 430px) {
	.site-header {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}

	.download-btn {
		width: 100%;
		max-width: 280px;
		justify-content: center;
		font-size: 1rem;
	}

	.fillter-btn {
		flex: 1 1 calc(50% - 0.75rem);
		justify-content: center;
		margin-left: 0 !important;
		margin-right: 0.5rem !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}
}
