:root {
	--bg-dark: #101010;
	--bg-darker: #050505;
	--bg-card: #202020;
	--text-light: #F5F5F5;
	--text-muted: #B0B0B0;
	--accent: #5aa0ff;
	--accent-hover: #5aa0ff;
	--border-color: #5aa0ff;
	--shadow-color: rgba(0, 0, 0, 0.6);
}

body {
	background-color: var(--bg-dark);
	color: var(--text-light);
	font-family: "Segoe UI", "Roboto", sans-serif;
	margin: 0;
	padding: 0;
	padding-top: 100px;
	line-height: 1.6;
}

h1, h2, h3, h4, h5 {
	color: var(--text-light);
	font-weight: 600;
	letter-spacing: 0.5px;
}

a, .btn {
	color: var(--accent);
	text-decoration: none;
	transition: all 0.2s ease;
}

a:hover, .btn:hover {
	color: var(--accent-hover);
}

.btn-primary {
	background-color: var(--accent);
	border: none;
	color: #fff;
	transition: all 0.25s ease;
}

.btn-primary:hover {
	background-color: var(--accent-hover);
	box-shadow: 0 0 10px var(--accent);
}

.text-muted {
	color: var(--text-muted);
}

.text-accent {
	color: var(--accent);
}

/* Start of Navbar */
.custom-navbar {
	background-color: var(--bg-dark);
	border-bottom: 1px solid var(--accent);
	box-shadow: 0 4px 10px var(--accent);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand {
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	color: var(--accent) !important;
	letter-spacing: 0.5px;
	font-weight: 600;
	transition: color 0.3s ease;
}

.navbar-brand:hover {
	color: #5aa0ff !important;
}

.navbar-nav .nav-link {
	color: var(--text-light);
	font-weight: 500;
	margin: 0 0.5rem;
	transition: color 0.2s ease, transform 0.2s ease;
	font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.navbar-nav .nav-link:hover {
	color: var(--accent);
	transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
	color: var(--accent);
}

.navbar-toggler {
	border: none;
	outline: none;
	box-shadow: none;
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(90, 160, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 992px) {
	.navbar-nav {
		text-align: center;
		background-color: var(--bg-dark);
		padding: 1rem 0;
		border-top: 1px solid var(--accent);
	}

	.navbar-nav .nav-item {
		margin: 0.5rem 0;
	}

	.navbar-nav .nav-link {
		display: inline-block;
		padding: 0.5rem 1rem;
	}
}

@media (max-width: 576px) {
	.navbar-brand {
		font-size: 1.1rem;
	}

	.navbar-nav .nav-link {
		font-size: 0.95rem;
	}

	.navbar-toggler {
		padding: 0.25rem 0.5rem;
	}
}

/* Start of heroCarousel */
#heroCarousel {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: var(--bg-dark);
	position: relative;
	box-sizing: border-box;
}

.hero-content {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-tagline {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 1.2s forwards;
	animation-delay: 0.3s;
}

.carousel-caption h1.hero-tagline {
	font-size: clamp(1.8rem, 4vw, 3rem);
	margin-bottom: 1rem;
}

.carousel-caption p.hero-tagline {
	font-size: clamp(1rem, 2.5vw, 1.4rem);
	max-width: 700px;
	margin: 0 auto;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.carousel-caption {
	position: relative;
	right: 0%;
	bottom: 20px;
	left: 0%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	text-shadow: 0 0 20px rgba(90, 160, 255, 0.8);
	text-align: center;
}

/* Start of Slideshows */
.slideshow-container {
	position: relative;
	width: 100%;
	max-width: 900px;
	margin: 2rem auto;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(90, 160, 255, 0.3);
}

.slide img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
}

.dots-container {
	text-align: center;
	margin-top: 1rem;
}

.dot {
	height: 12px;
	width: 12px;
	margin: 0 5px;
	background-color: #606060;
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot.active, .dot:hover {
	background-color: #5aa0ff;
	transform: scale(1.2);
}

/* === Responsive Tweaks === */
@media (max-width: 992px) {
	#heroCarousel {
		min-height: auto;
		padding: 3rem 1rem;
	}

	.slideshow-container {
		max-width: 700px;
	}
}

@media (max-width: 768px) {
	.carousel-caption h1.hero-tagline {
		font-size: 1.8rem;
	}
	
	.carousel-caption p.hero-tagline {
		font-size: 1rem;
	}
	
	.slideshow-container {
		max-width: 90%;
	}
}

@media (max-width: 480px) {
	#heroCarousel {
		padding: 2rem 1rem;
	}

	.carousel-caption h1.hero-tagline {
		font-size: 1.5rem;
	}
	.carousel-caption p.hero-tagline {
		font-size: 0.95rem;
	}

	.dot {
		height: 10px;
		width: 10px;
		margin: 0 3px;
	}
}

/* Start of features */
#features {
	background-color: var(--bg-dark);
	padding: 200px 10px 200px 10px; /* top, right, bottom, left */
	text-align: center;
	box-sizing: border-box;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.feature-card {
	background-color: var(--bg-card);
	padding: 30px 10px 30px 10px; /* top, right, bottom, left */
	border-radius: 10px;
	box-shadow: 0 5px 15px var(--shadow-color);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 20px rgba(90, 160, 255, 0.4);
}

.feature-card h3 {
	color: var(--accent);
	font-size: clamp(1.3rem, 2.5vw, 1.6rem);
	margin-bottom: 0.75rem;
}

.feature-card p {
	color: var(--text-muted);
	font-size: clamp(0.9rem, 2vw, 1.1rem);
	line-height: 1.6;
}

@media (max-width: 992px) {
	#features {
		padding: 50px 30px 80px;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
		gap: 25px;
	}

	.feature-card {
		padding: 25px 15px;
	}
}

@media (max-width: 768px) {
	#features {
		padding: 40px 20px 60px;
	}

	.features-grid {
		grid-template-columns: 1fr; /* 1 card per row */
		gap: 20px;
	}

	.feature-card {
		padding: 25px;
	}
}

@media (max-width: 480px) {
	#features {
		padding: 30px 15px 50px;
	}

	.feature-card {
		padding: 20px 15px;
	}

	.feature-card h3 {
		font-size: 1.2rem;
	}

	.feature-card p {
		font-size: 0.95rem;
	}
}

/* Start of contacts section */
#contacts {
	background-color: var(--bg-dark);
	padding: 0px 10px; /* top/bottom, sides */
	text-align: center;
	box-sizing: border-box;
}

.contacts-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 50px auto;
}

.contacts-card {
	background-color: var(--bg-card);
	padding: 30px 30px;
	border-radius: 20px;
	box-shadow: 0 5px 15px var(--shadow-color);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	max-width: 350px;
	text-align: center;
}

.contacts-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 20px rgba(90, 160, 255, 0.4);
}

.contacts-card h3 {
	color: var(--accent);
	font-size: clamp(1.3rem, 2.5vw, 1.6rem);
	margin-bottom: 0.5rem;
}

.contacts-card p {
	color: var(--text-muted);
	font-size: clamp(0.9rem, 2vw, 1.1rem);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.contacts-card a {
	display: inline-block;
	background-color: var(--accent);
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.contacts-card a:hover {
	background-color: rgba(90, 160, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
	#contacts {
		padding: 60px 20px;
	}

	.contacts-card {
		max-width: 90%;
	}
	iframe {
		width: 100%;
		height: 400px;
	}
}


/* Start of footer */
#page-footer {
	background-color: var(--bg-dark);
	color: #ccc;
	padding: 2rem 1rem;
	font-size: 0.9rem;
	border-top: 4px solid var(--accent);
	text-align: center;
	box-sizing: border-box;	
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

#page-footer .footer-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	line-height: 1.6;
}

#page-footer p {
	margin: 0.25rem 0;
}

#page-footer .footer-note {
	font-size: clamp(0.75rem, 1.8vw, 0.85rem);
	color: var(--text-light);
	line-height: 1.4;
	margin-top: 0.75rem;
}

#page-footer a {
	color: var(--text-light);
	text-decoration: none;
	transition: color 0.3s ease, text-decoration 0.3s ease;
}

#page-footer a:hover {
	text-decoration: underline;
	color: var(--accent);
}

.footer-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
}

.footer-links a {
	font-size: clamp(0.9rem, 2vw, 1rem);
}

@media (max-width: 768px) {
	#page-footer {
		padding: 1.5rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 0.5rem;
	}
}

@media (max-width: 480px) {
	#page-footer {
		padding: 1.25rem;
		font-size: 0.85rem;
	}

	#page-footer .footer-note {
		font-size: 0.75rem;
	}
}

#heroCarousel, #features, #contacts, #page-footer {
	padding-top: 100px;
	padding-bottom: 200px;
}

/* Footer slightly smaller */
#page-footer {
	padding-top: 40px;
	padding-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	#heroCarousel, #features, #contacts {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	#page-footer {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

