* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-color: #1a1a1a;
}

#loadingOverlay {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1a1a1a;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
	transition: opacity 1s ease, visibility 0s 1s;
	/* Fade out smoothly */
}

#loadingOverlay.hidden {
	opacity: 0;
	visibility: hidden;
	/* Make it not clickable after fade */
}

.loading-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.brand-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	font-weight: 600;
	color: white;
	text-decoration: none;
	margin-bottom: 20px;
}

.brand-logo img {
	height: 50px;
	margin-right: 10px;
}

.brand-logo span {
	font-size: 32px;
	color: white;
}

.spinner-border {
	width: 4rem;
	height: 4rem;
	border-width: 0.25em;
}


.navbar {
	background-color: #2c3e50;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
}

.nav-link {
	display: inline-block;
	padding: 10px 20px;
	margin: 10px 5px;
	background-color: #16a085;
	color: white;
	text-align: center;
	border-radius: 5px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.nav-link:hover {
	background-color: #1abc9c !important;
	color: #ffffff;
}

.nav-link.active {
	background-color: #003366;
	color: #ffffff;
}

.dropdown-menu {
	background-color: #34495e;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
}

.dropdown-menu a {
	background-color: #34495e !important;
	color: white !important;
}

.dropdown-menu a:hover {
	background-color: #1abc9c !important;
	color: white !important;
}

.text-white {
	color: white !important;
}

.button {
	background-color: #16a085;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
	color: #f9f9f9 !important;
	border-radius: 4px;
	border: none;
}

.button:hover {
	background-color: #1abc9c !important;
	color: white !important;
}

.image {
	border-radius: 8px !important;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
}

.card {
	background-color: #2c3e50;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
	border-radius: 4px;
	margin-bottom: 20px;
}

.card:hover {
	background-color: #1b2936;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
	border-radius: 4px;
	margin-bottom: 20px;
}

.card img {
	border-radius: 8px !important;
	height: 250px;
	/* Fixed height */
	width: 100%;
}

.card-image {
	border-radius: 8px !important;
	width: 25% !important;
	height: 25% !important;
	margin-top: 15px !important;
}

.divider {
	width: 100%;
	height: 3rem;
	background-color: rgba(0, 0, 0, .2);
	border: solid rgba(0, 0, 0, .25);
	border-width: 1px 0;
	box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .2), inset 0 .125em .5em rgba(0, 0, 0, .25);
}

.header-text {
	color: #7f8c8d !important;
	margin-top: 15px;
}

.carousel-inner img {
	border-radius: 8px !important;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
	height: 400px;
	width: 100%;
	object-fit: cover;
}

.carousel-item {
	height: 400px;
}


.col img {
	height: 400px;
	width: 400px;
	border-radius: 8px !important;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: #16a085;
	border-radius: 5px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
	background-color: #1abc9c;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
	border-radius: 5px;
}

.footer-container a {
	text-decoration: none;
}

#scrollToTopBtn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 8%;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
	font-size: 24px;
	color: white;
	cursor: pointer;
	display: none;
	transition: opacity 0.3s, transform 0.3s;
}

#scrollToTopBtn:hover {
	background-color: rgba(255, 255, 255, 0.4);
	transform: scale(1.1);
}

.video-container {
	text-align: center;
	margin: 40px auto;
}

.video-container iframe {
	border-radius: 10px;
	border: solid rgba(0, 0, 0, .25);
	border-width: 1px 0;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}