/* Optimized Welcome Page CSS - Extracted for faster loading */

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	box-shadow: none !important;
}

html, body {
	overflow-x: hidden;
	max-width: 100vw;
}

.container {
	max-width: 100%;
	overflow-x: hidden;
}

.header {
	background-color: #4471DC;
	color: #FAFAF6;
	height: 60px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

.header::before {
	display: none !important;
}

.hero {
	width: 100%;
	max-width: 100vw;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f8f9fa;
	padding: 0 20px;
	gap: 20px;
	overflow-x: hidden;
}

.hero .hero-content {
	width: 50%;
	padding: 20px;
	z-index: 2;
}

.hero .hero-image {
	width: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .hero-image img {
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	position: relative;
	z-index: 1;
}

.blob-1,
.blob-2 {
	position: absolute;
	border-radius: 50%;
	will-change: border-radius;
}

.blob-1 {
	width: 300px;
	height: 300px;
	background-color: rgba(0, 123, 255, 0.15);
	animation: morphShape 15s linear infinite;
	top: -30px;
	left: -30px;
}

.blob-2 {
	width: 200px;
	height: 200px;
	background-color: rgba(15, 41, 67, 0.10);
	animation: morphShape 20s linear infinite;
	bottom: -20px;
	right: -20px;
}

.dash {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 80%;
	max-width: 350px;
	height: auto;
	aspect-ratio: 16 / 9;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@keyframes morphShape {
	0%, 100% { border-radius: 30% 70% 70% 30%/30% 30% 70% 70%; }
	25% { border-radius: 58% 42% 75% 25%/76% 46% 54% 24%; }
	50% { border-radius: 50% 50% 33% 67%/55% 27% 73% 45%; }
	75% { border-radius: 33% 67% 58% 42%/63% 68% 32% 37%; }
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	padding: 20px 0;
}

.hero p {
	font-size: 1.2rem;
	margin-top: 20px;
}

.cta-buttons .btn {
	margin: 10px 10px 0 0;
}

.text-justify {
	padding-right: 100px;
	text-align: justify;
	padding-top: 20px;
}

.underline-text {
	text-decoration: underline;
	text-underline-offset: 6px;
}

.footer {
	background-color: #1f3a93;
	color: #EDEDED;
}

.footer a {
	color: #EDEDED;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.footer-title {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.footer .social a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.08);
	margin-right: 8px;
}

.footer .social a:hover {
	background: rgba(255,255,255,.15);
}

.footer .newsletter input[type="email"] {
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	color: #fff;
}

.footer .newsletter input[type="email"]::placeholder {
	color: rgba(255,255,255,.85);
}

.footer .newsletter .btn {
	background: #ffcc00;
	border: none;
	font-weight: 700;
}

.footer .newsletter .btn:hover {
	filter: brightness(.95);
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.15);
	color: #D9E1F2;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
	.hero {
		flex-direction: column;
		min-height: auto;
		padding-top: 64px;
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.hero .hero-content,
	.hero .hero-image {
		width: 100%;
	}
	
	.hero .hero-image {
		order: -1;
		margin-bottom: 12px;
	}
	
	.text-justify {
		padding-right: 0;
		text-align: left;
	}
	
	.hero h1 {
		font-size: 2.25rem;
	}
	
	.hero p {
		font-size: 1rem;
	}
	
	.dash {
		right: 0;
		left: 0;
		margin: 0 auto;
		width: 95%;
		max-width: 500px;
	}
	
	.footer .col-spacer {
		margin-top: 24px;
	}
}

@media (max-width: 575.98px) {
	.hero {
		padding: 0 16px 32px;
	}
	
	.hero h1 {
		font-size: 1.85rem;
	}
	
	.hero p {
		font-size: 0.95rem;
	}
	
	.blob-1, .blob-2 {
		display: none;
	}
	
	.container {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* Large screen padding */
.container {
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 1200px) {
	.container:not(.hero .container) {
		padding-left: 100px;
		padding-right: 100px;
	}
}

@media (min-width: 1400px) {
	.container:not(.hero .container) {
		padding-left: 140px;
		padding-right: 140px;
	}
}

@media (min-width: 1600px) {
	.container:not(.hero .container) {
		padding-left: 180px;
		padding-right: 180px;
	}
}

