:root {
	--primary-color: #00aeef;
	--secondary-color: #0077a3;
	--accent-color: #3982d7;
}


/* Logo sizing consistency */
.navbar-brand img {
	height: 40px;
	width: auto;
	max-height: 40px;
}

.footer img {
	height: 45px;
	width: auto;
	max-height: 45px;
}

/* Navbar spacing optimization */
.navbar {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

/* Custom animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate {
	animation: fadeIn 0.8s ease-out forwards;
}

/* Floating icons - not available in Bootstrap */
.floating-icons {
	position: fixed;
	bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 1050;
}

.floating-icons.left {
	left: 20px;
}

.floating-icons.right {
	right: 20px;
}

.floating-icons a {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.floating-icons a:hover {
	background-color: var(--secondary-color);
	transform: scale(1.1);
}

.floating-icons img {
	width: 35px;
	height: 35px;
}

/* Custom hero gradient */
.hero-gradient {
	background: linear-gradient(
		135deg,
		var(--primary-color) 0%,
		var(--accent-color) 100%
	);
}

/* Service card hover effects */
.service-card {
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 4px;
	height: 0;
	background: var(--primary-color);
	transition: height 0.3s ease;
}

.service-card:hover::before {
	height: 100%;
}

.service-card:hover {
	transform: translateY(-10px);
}

/* Reading progress bar */
.reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #f0f0f0;
	z-index: 1060;
}

.reading-progress-bar {
	height: 100%;
	background-color: var(--primary-color);
	width: 0%;
	transition: width 0.2s ease;
}

/* Star rating */
.star {
	font-size: 2rem;
	color: #6c757d;
	cursor: pointer;
	transition: color 0.3s ease;
}

.star:hover,
.star.selected {
	color: #ffc107;
}

/* Copy alert */
.copy-alert {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1050;
	display: none;
	min-width: 250px;
	max-width: 320px;
	padding: 12px 20px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.copy-alert.show {
	display: block;
	opacity: 1;
	transform: translate(-50%, 5px);
}

.alert-success {
	background-color: #28a745;
	color: white;
}

.alert-danger {
	background-color: #dc3545;
	color: white;
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.floating-icons {
		bottom: 10px;
	}

	.floating-icons a {
		width: 45px;
		height: 45px;
	}

	.floating-icons img {
		width: 30px;
		height: 30px;
	}
}
.nav-link[aria-current="page"] {
	font-weight: bold;
	border-bottom: 2px solid #fff;
	color: #ffffff;
}

