/* Language dropdown overrides */
.lang-dropdown .lang-toggle {
	background: transparent !important;
	color: #fff !important;
	box-shadow: none !important;
}
.lang-dropdown .lang-toggle:focus,
.lang-dropdown .lang-toggle:hover {
	color: #fff !important;
}
.lang-dropdown .dropdown-menu.lang-dropdown-menu {
	z-index: 2000; /* higher than sticky header/nav */
}
.lang-dropdown .dropdown-item {
	display: flex;
	align-items: center;
}
.lang-dropdown .dropdown-item img {
	border-color: rgba(255,255,255,0.3);
}

/* Ensure topbar uses space effectively and the language selector sits at far right */

/* Brand logo sizing */
.navbar-brand img.brand-logo {
	height: 36px;
	width: auto;
}
.brand-logo-footer {
	height: 36px;
	width: auto;
}

/*# sourceMappingURL=user.css.map */
/* URSA brand blue utility */
.text-ursa-blue {
  color: #0091ea !important; /* matches logo blue */
}

/* URSA brand blue background */
.bg-ursa-blue {
	background-color: #0091ea !important;
}

/* (removed) URSA brand green utility no longer used */
/* URSA brand green utility */
.text-ursa-green {
	color: #00C853 !important; /* matches logo green */
}

/* Section title color and spacing */
.main section h2,
.main section h3 {
	color: #2a3855 !important; /* requested section title color */
	margin-bottom: 1.5rem !important; /* larger gap to content */
}
@media (min-width: 768px) {
	.main section h2,
	.main section h3 {
		margin-bottom: 2rem !important;
	}
}

/* Section title accent (allow brand blue inside titles) */
.section-title .accent-blue {
	color: #0091EA !important;
}

/* Brand buttons */
.btn-ursa-blue {
	background-color: #0091EA;
	border-color: #0091EA;
	color: #fff;
}
.btn-ursa-blue:hover,
.btn-ursa-blue:focus {
	background-color: #007ACC;
	border-color: #007ACC;
	color: #fff;
}
.btn-ursa-green {
	background-color: #00C853;
	border-color: #00C853;
	color: #fff;
}
.btn-ursa-green:hover,
.btn-ursa-green:focus {
	background-color: #00A84B;
	border-color: #00A84B;
	color: #fff;
}

/* Prevent tiny horizontal scroll on small screens (caused by transforms/100vw utilities) */
html, body {
	max-width: 100%;
	overflow-x: hidden;
}

/* Extra guard: hero slider sometimes subpixel-overflows due to flex/transform */
.theme-slider { overflow: hidden; }
.theme-slider .container { overflow: hidden; }

/* Contain hover scale of client logos within their grid columns */
.clients-logos [class^="col-"],
.clients-logos [class*=" col-"] {
	overflow: hidden;
}

/* Newsletter card hover effects */
.newsletter-card {
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	border: 1px solid rgba(0,0,0,0.05);
}
.newsletter-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.15) !important;
	border-color: rgba(0,0,0,0.12);
}
.newsletter-card .card-img-top {
	transition: transform .3s ease;
}
.newsletter-card:hover .card-img-top {
	transform: scale(1.03);
}
.newsletter-card .card-title {
	transition: color .2s ease;
}
.newsletter-card:hover .card-title {
	color: #0091EA; /* URSA blue */
}

/* Why section card hover effects */
#why .why-card {
	background-color: #fff;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
	border: 1px solid rgba(0,0,0,0.06);
}
#why .why-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.12) !important;
	border-color: rgba(0,0,0,0.12);
	background-color: #fcfeff;
}
#why .why-card i {
	transition: transform .2s ease, color .2s ease;
}
#why .why-card:hover i {
	transform: translateY(-2px);
	color: #0091EA; /* brand blue */
}
#why .why-card h3 {
	transition: color .2s ease;
}
#why .why-card:hover h3 {
	color: #0091EA;
}
