@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap");

/* Reset */
html, body, div, span, h1, h2, h3, p, a, img, form, input, button, nav, header, footer {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* Basic */
html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	background: #1a1a2e;
	overflow: hidden;
	font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.is-preload *, body.is-preload *:before, body.is-preload *:after {
	animation: none !important;
	transition: none !important;
}

/* Wrapper */
#wrapper {
	height: 100vh;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	width: 100%;
}

#bg {
	background-attachment: fixed, fixed;
	background-position: top left, center center;
	background-repeat: repeat, no-repeat;
	background-size: auto, cover;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
	background:
		radial-gradient(ellipse at top left, rgba(255, 184, 108, 0.08) 0%, transparent 40%),
		radial-gradient(ellipse at top right, rgba(162, 89, 255, 0.1) 0%, transparent 40%),
		radial-gradient(ellipse at bottom left, rgba(74, 226, 184, 0.08) 0%, transparent 40%),
		radial-gradient(ellipse at bottom right, rgba(74, 144, 226, 0.12) 0%, transparent 50%),
		linear-gradient(135deg, #1a1a2e 0%, #1e2341 20%, #0f3460 40%, #1e2341 60%, #1a1a2e 100%);
	animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
	0%, 100% { filter: hue-rotate(0deg) saturate(1); }
	25% { filter: hue-rotate(10deg) saturate(1.1); }
	50% { filter: hue-rotate(-10deg) saturate(0.95); }
	75% { filter: hue-rotate(5deg) saturate(1.05); }
}

#bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.01) 35px, rgba(255, 255, 255, 0.01) 70px),
		repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.01) 35px, rgba(255, 255, 255, 0.01) 70px);
	animation: meshMove 20s linear infinite;
	opacity: 0.3;
}

#overlay {
	background-attachment: fixed;
	background-color: rgba(19, 21, 25, 0.5);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity 3s ease-in-out;
	width: 100%;
	z-index: 2;
}

#main {
	height: 100%;
	left: 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 100px; /* Add padding to prevent footer overlap */
}

/* Header */
#header {
	transform: scale(0.95);
	transition: transform 0.5s ease, opacity 0.5s ease;
	overflow: visible;
	padding: 1rem;
	margin-top: 290px; /* Center the logo between carousel and heading */
}

#header #logo {
	margin-top: 0;
	margin-bottom: -2rem; /* Negative margin to pull title UP closer to logo */
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 400px;
}

#header #logo img {
	width: 320px;
	height: auto;
	max-width: 90vw;
	object-fit: contain;
	filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4))
		   drop-shadow(0 0 40px rgba(74, 144, 226, 0.2));
	animation:
		logoEntrance 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards,
		logoFloat 6s ease-in-out 1.5s infinite,
		logoGlow 3s ease-in-out 1.5s infinite,
		logoPulse 4s ease-in-out 1.5s infinite;
	opacity: 0;
	transform: scale(0) rotate(-180deg);
	cursor: pointer;
	transition: transform 0.3s ease;
}

#header #logo img:hover {
	animation-play-state: paused;
	transform: scale(1.1) rotateY(360deg) rotateX(10deg);
	filter: drop-shadow(0 20px 40px rgba(74, 144, 226, 0.6))
		   drop-shadow(0 0 80px rgba(255, 184, 108, 0.4))
		   drop-shadow(0 0 120px rgba(162, 89, 255, 0.3));
	transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55), filter 0.8s ease;
}

#header h1 {
	color: #ffffff;
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1.4;
	margin-bottom: 0.3rem; /* Reduced from 0.5rem */
	padding-bottom: 0;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards 0.5s;
	overflow: visible;
	display: inline-block;
}

#header p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.7;
	margin-bottom: 3rem;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards 0.8s;
	font-family: 'Source Sans Pro', sans-serif;
}

/* Typewriter Effect */
.typewriter-tagline {
	margin: 0.5rem 0 1.5rem !important; /* Reduced margins */
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.typewriter-text {
	color: #FFB86C;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	font-family: 'Source Sans Pro', sans-serif;
	text-shadow: 0 0 20px rgba(255, 184, 108, 0.5),
				 0 0 40px rgba(255, 184, 108, 0.3);
	animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
	0% { text-shadow: 0 0 20px rgba(255, 184, 108, 0.5), 0 0 40px rgba(255, 184, 108, 0.3); }
	100% { text-shadow: 0 0 30px rgba(255, 184, 108, 0.7), 0 0 50px rgba(255, 184, 108, 0.5); }
}

.cursor {
	display: inline-block;
	color: #FFB86C;
	font-size: 1.3rem;
	font-weight: 400;
	animation: blink 1s infinite;
	margin-left: 2px;
}

@keyframes blink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0; }
}

/* Email Signup */
#email-signup {
	margin: 1.5rem 0;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 1s ease forwards 1.1s;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

#email-signup::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

#email-signup h3 {
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
	font-family: 'Playfair Display', serif;
	letter-spacing: -0.01em;
}

.signup-subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	margin-bottom: 1rem;
	font-family: 'Source Sans Pro', sans-serif;
}

.email-form {
	max-width: 550px;
	margin: 0 auto;
}

.form-group {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

#email-input {
	flex: 1;
	padding: 0.9rem 1.2rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	color: #ffffff;
	font-size: 1rem;
	font-family: 'Source Sans Pro', sans-serif;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

#email-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

#email-input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(74, 144, 255, 0.5);
	box-shadow: 0 0 20px rgba(74, 144, 255, 0.2);
}

.submit-btn {
	padding: 0.9rem 2rem;
	background: linear-gradient(135deg, #4a90ff 0%, #3a7aef 50%, #5a9fff 100%);
	background-size: 200% 200%;
	animation: gradientMove 3s ease infinite, buttonPulse 2s ease-in-out infinite;
	border: none;
	border-radius: 50px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	font-family: 'Source Sans Pro', sans-serif;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(74, 144, 255, 0.4),
				inset 0 1px 0 rgba(255, 255, 255, 0.2);
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: buttonShimmer 3s infinite;
}

@keyframes gradientMove {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes buttonPulse {
	0%, 100% {
		box-shadow: 0 4px 15px rgba(74, 144, 255, 0.4),
					0 0 30px rgba(74, 144, 255, 0.2);
	}
	50% {
		box-shadow: 0 4px 20px rgba(74, 144, 255, 0.6),
					0 0 40px rgba(74, 144, 255, 0.4);
	}
}

@keyframes buttonShimmer {
	0% { left: -100%; }
	100% { left: 100%; }
}

.submit-btn:hover {
	background-size: 100% 100%;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 30px rgba(74, 144, 255, 0.5),
				0 0 50px rgba(74, 144, 255, 0.3);
	animation-play-state: paused;
}

.submit-btn:active {
	transform: translateY(0);
}

.form-message {
	text-align: center;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	font-family: 'Source Sans Pro', sans-serif;
	min-height: 20px;
}

.form-message.success {
	color: #4ade80;
}

.form-message.error {
	color: #f87171;
}

/* Stats Display */
#stats-display {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 2rem;
	opacity: 0;
	animation: fadeInUp 1s ease forwards 1.4s;
}

.stat-item {
	text-align: center;
	padding: 1rem;
	background: linear-gradient(135deg,
		rgba(255, 255, 255, 0.05) 0%,
		rgba(255, 255, 255, 0.02) 100%);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg,
		transparent,
		rgba(74, 144, 226, 0.1),
		transparent);
	transform: translateX(-100%);
	transition: transform 0.6s;
}

.stat-item:hover::before {
	transform: translateX(100%);
}

.stat-item:hover {
	transform: translateY(-2px);
	border-color: rgba(74, 144, 226, 0.3);
	box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
	font-family: 'Playfair Display', serif;
	background: linear-gradient(135deg, #4a90ff, #FFB86C);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}

.stat-label {
	display: block;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 400;
}


/* Footer */
#footer {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	animation: fadeIn 1s ease forwards 2s;
	z-index: 2;
	padding: 1rem 2rem;
}

#footer .copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	font-family: 'Source Sans Pro', sans-serif;
	text-transform: uppercase;
}

#footer .copyright a {
	color: #FFB86C;
	text-decoration: none;
	transition: all 0.3s ease;
	text-transform: lowercase;
	position: relative;
}

#footer .copyright a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: #FFB86C;
	transition: width 0.3s ease;
}

#footer .copyright a:hover {
	color: #4a90ff;
	text-shadow: 0 0 10px rgba(74, 144, 255, 0.5);
}

#footer .copyright a:hover::after {
	width: 100%;
}


/* Utility Classes */
.hidden {
	display: none !important;
}

/* FontAwesome Icons */
.fa-envelope:before {
	content: "✉";
}

.icon {
	text-decoration: none;
	position: relative;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

/* Animated Background Particles */
#particles-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.5;
	pointer-events: none;
}

/* Animated Floating Shapes */
.floating-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	opacity: 0;
	animation: fadeIn 3s ease forwards 1s;
	pointer-events: none;
}

.floating-shape {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(74, 144, 226, 0.25), transparent);
	animation: float-random 20s infinite ease-in-out;
	filter: blur(30px);
}

.shape-1 {
	width: 350px;
	height: 350px;
	left: -150px;
	top: 20%;
	animation-delay: 0s;
	background: radial-gradient(circle at 30% 30%, rgba(255, 184, 108, 0.2), transparent);
}

.shape-2 {
	width: 450px;
	height: 450px;
	right: -200px;
	top: 50%;
	animation-delay: 5s;
	background: radial-gradient(circle at 30% 30%, rgba(162, 89, 255, 0.2), transparent);
}

.shape-3 {
	width: 300px;
	height: 300px;
	left: 25%;
	bottom: -100px;
	animation-delay: 10s;
	background: radial-gradient(circle at 30% 30%, rgba(74, 226, 184, 0.18), transparent);
}

.shape-4 {
	width: 280px;
	height: 280px;
	right: 20%;
	top: 10%;
	animation-delay: 15s;
	background: radial-gradient(circle at 30% 30%, rgba(255, 89, 162, 0.15), transparent);
}

@keyframes float-random {
	0%, 100% {
		transform: translateY(0) translateX(0) scale(1);
	}
	33% {
		transform: translateY(-100px) translateX(50px) scale(1.1);
	}
	66% {
		transform: translateY(50px) translateX(-30px) scale(0.9);
	}
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

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

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes logoEntrance {
	0% {
		opacity: 0;
		transform: scale(0) rotate(-180deg);
		filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3)) blur(10px);
	}
	50% {
		opacity: 1;
		transform: scale(1.1) rotate(10deg);
		filter: drop-shadow(0 15px 30px rgba(74, 144, 226, 0.4)) blur(0px);
	}
	100% {
		opacity: 1;
		transform: scale(1) rotate(0deg);
		filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3)) blur(0px);
	}
}

@keyframes logoFloat {
	0%, 100% {
		transform: translateY(0px) scale(1) rotate(0deg);
	}
	25% {
		transform: translateY(-8px) scale(1.02) rotate(2deg);
	}
	50% {
		transform: translateY(-15px) scale(1.05) rotate(0deg);
	}
	75% {
		transform: translateY(-8px) scale(1.02) rotate(-2deg);
	}
}

@keyframes logoGlow {
	0%, 100% {
		filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4))
			   drop-shadow(0 0 30px rgba(74, 144, 226, 0.2));
	}
	50% {
		filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4))
			   drop-shadow(0 0 60px rgba(74, 144, 226, 0.5))
			   drop-shadow(0 0 120px rgba(74, 144, 226, 0.3));
	}
}

@keyframes logoPulse {
	0%, 100% { transform: scale(1) rotate(0deg); }
	25% { transform: scale(1.02) rotate(1deg); }
	50% { transform: scale(1.05) rotate(-1deg); }
	75% { transform: scale(1.02) rotate(1deg); }
}

@keyframes meshMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(70px, 70px);
	}
}

/* Loading Screen */
#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #16213e 75%, #1a1a2e 100%);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

body:not(.is-preload) #loader {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.loader-content {
	text-align: center;
}

.loader-logo {
	width: 120px;
	height: 120px;
	margin: 0 auto 2rem;
	animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-logo img {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 30px rgba(74, 144, 226, 0.5));
}

.loader-spinner {
	width: 60px;
	height: 60px;
	margin: 0 auto 1.5rem;
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-top-color: #4a90ff;
	border-radius: 50%;
	animation: loaderSpin 1s linear infinite;
}

.loader-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: 0.05em;
	animation: loaderTextPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
	0%, 100% { transform: scale(1); opacity: 0.8; }
	50% { transform: scale(1.1); opacity: 1; }
}

@keyframes loaderSpin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@keyframes loaderTextPulse {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}

/* Loading Animation */
body:not(.is-preload) #wrapper {
	animation: fadeIn 2s ease forwards;
	opacity: 1;
}

body:not(.is-preload) #overlay {
	opacity: 0.6;
}

body:not(.is-preload) #header {
	transform: scale(1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	#header h1 {
		font-size: 2rem;
	}

	#header p {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	#header #logo img {
		width: 80px;
	}

	.contact-email {
		font-size: 1rem;
		padding: 0.8rem 1.5rem;
	}

	#stats-display {
		flex-direction: column;
		gap: 1rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	.form-group {
		flex-direction: column;
	}

	#email-signup {
		padding: 1.5rem;
	}
}

@media screen and (max-width: 480px) {
	#header h1 {
		font-size: 1.8rem;
	}
	
	#header #logo img {
		width: 70px;
	}
	
	.contact-email {
		font-size: 0.9rem;
		padding: 0.8rem 1.2rem;
	}
	
	#footer {
		bottom: 1rem;
	}
	
	#footer .copyright {
		font-size: 0.7rem;
	}
}

/* Logo Carousel */
#logo-carousel-container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: linear-gradient(to bottom, rgba(26, 26, 46, 0.95), transparent);
	padding: 20px 0 10px;  /* Reduced padding to make it smaller */
	z-index: 4;
	opacity: 0;
	animation: fadeInDown 1s ease forwards 2.5s;
}

.carousel-tagline {
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	font-weight: 400;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-top: 60px;
	font-family: 'Source Sans Pro', sans-serif;
}

#logo-carousel {
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 100px;
	mask-image: linear-gradient(to right,
		transparent 0%,
		black 10%,
		black 90%,
		transparent 100%);
	-webkit-mask-image: linear-gradient(to right,
		transparent 0%,
		black 10%,
		black 90%,
		transparent 100%);
}

.logo-track {
	display: flex;
	animation: scroll 120s linear infinite;
	width: fit-content;
	align-items: center;
	height: 100%;
}

.logo-item {
	height: 75px;
	margin: 0 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: linear-gradient(135deg,
		rgba(255, 255, 255, 0.95),
		rgba(255, 255, 255, 0.85));
	border-radius: 12px;
	padding: 12px 25px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-item::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(74, 144, 226, 0.3), transparent 70%);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.logo-item:hover::before {
	width: 100px;
	height: 100px;
}

.logo-item img {
	height: 100%;
	width: auto;
	max-width: 140px;
	object-fit: contain;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	filter: grayscale(0.2);
}

.logo-item:hover {
	background: linear-gradient(135deg,
		rgba(255, 255, 255, 1),
		rgba(240, 245, 255, 1));
	transform: translateY(-5px) scale(1.1);
	box-shadow:
		0 10px 30px rgba(74, 144, 226, 0.3),
		0 5px 15px rgba(255, 184, 108, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(74, 144, 226, 0.1);
}

.logo-item:hover img {
	filter: grayscale(0) brightness(1.1);
	transform: scale(1.05);
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Responsive adjustments for carousel */
@media screen and (max-width: 768px) {
	#logo-carousel-container {
		padding: 15px 0 20px;
	}

	#logo-carousel {
		height: 60px;
	}

	.logo-item {
		height: 40px;
		margin: 0 25px;
		padding: 8px 15px;
	}

	.logo-item img {
		max-width: 80px;
	}

	.carousel-tagline {
		font-size: 0.85rem;
		margin-top: 12px;
	}

}

@media screen and (max-width: 480px) {
	#logo-carousel {
		height: 50px;
	}

	.logo-item {
		height: 35px;
		margin: 0 20px;
		padding: 6px 12px;
	}

	.logo-item img {
		max-width: 70px;
	}

	.carousel-tagline {
		font-size: 0.75rem;
		margin-top: 10px;
		letter-spacing: 0.1em;
	}
}