/* Global scaling for better proportion at 100% zoom */
html {
	font-size: 90%;
	/* Scale everything down to ~90% of default */
	scroll-behavior: smooth;
	overflow-x: hidden;
}

@media (min-width: 1280px) {
	html {
		font-size: 92%;
		/* Slightly larger on very wide screens but still scaled down */
	}
}

/* Stunning Custom Scrollbar */
/* For Webkit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #3D52A0 0%, #7091E6 100%);
	border-radius: 10px;
	border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #7091E6 0%, #3D52A0 100%);
}

/* For Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: #3D52A0 #f1f5f9;
}

/* Internal Custom Scrollbar (Tech Stack, etc.) */
.custom-scrollbar::-webkit-scrollbar {
	height: 6px;
	/* Horizontal scrollbar height */
	width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
	background: linear-gradient(90deg, #3D52A0 0%, #7091E6 100%);
	border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(90deg, #7091E6 0%, #3D52A0 100%);
}

/* Parallax effect */
.parallax {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Gradient text */
.gradient-text {
	background: linear-gradient(90deg, #3D52A0, #7091E6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fadeIn {
	animation: fadeIn 0.8s ease forwards;
}

/* Floating animation for elements */
@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0px);
	}
}

.animate-float {
	animation: float 4s ease-in-out infinite;
}

/* Card hover effects */
.service-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Custom shape dividers */
.wave-divider {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	z-index: 1;
}

/* Custom styling for form elements */
.custom-input {
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-input:focus {
	border-color: #7091E6;
	box-shadow: 0 0 0 3px rgba(112, 145, 230, 0.3);
}

/* Ensuring pointer cursor on Learn More buttons */
a[href="coming-soon.html"] {
	cursor: pointer !important;
}

@media only screen and (max-width: 768px) {
	.banner {
		height: auto !important;
		min-height: auto !important;
	}
}

@media only screen and (max-width: 430px) {
	.pb-20 {
		padding-bottom: 2.5rem !important;
	}

	.py-20,
	.py-24 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}
}

/* Jump to Top Button */
#jump-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, #3D52A0, #7091E6);
	color: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	box-shadow: 0 10px 20px rgba(61, 82, 160, 0.3);
}

#jump-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#jump-to-top:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 25px rgba(61, 82, 160, 0.4);
	background: linear-gradient(135deg, #7091E6, #3D52A0);
}

#jump-to-top i {
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

#jump-to-top:hover i {
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	#jump-to-top {
		bottom: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
	}
}