body,
html {
	height: 100%;
	margin: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: url('/assets/images/bg_image10.png') center center/cover no-repeat fixed;
	color: #fff;
}

.navbar {
	background-color: #ffffff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#mainNavbar .logo-wrapper {
	height: 50px;
	/* Keep navbar height consistent */
	overflow: visible;
	/* Allow image to grow horizontally */
	display: flex;
	align-items: center;
}

#mainNavbar .logo-img {
	height: 60px;
	/* Slightly larger than wrapper */
	max-width: 220%;
	/* Wider look */
	border-radius: 10px;
	object-fit: contain;
}

#mainNavbar .nav-link {
	color: rgb(255, 141, 28);
	font-weight: 900;
	margin-right: 20px;
}

.profile-container {
	display: flex;
	align-items: center;
	gap: 12px;
}

.navbar .profile-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	color: #ff6f00;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
	position: relative;
	cursor: pointer;
}

#mainNavbar .custom-login-btn {
	background-color: rgb(255, 70, 70);
	border: 1px solid black;
	color: white;
}

.logout-btn {
	background: rgb(255, 70, 70);
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	color: white;
	font-weight: 600;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logout-btn:hover {
	background: rgb(255, 70, 70);
}

.contact-form {
	max-width: 600px;
	margin: auto;
	background-color: rgb(255, 255, 255);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 1rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
	padding: 2.5rem 2rem;
	color: rgb(0, 0, 0);
}

.contact-form h2 {
	font-weight: 700;
	color: rgb(0, 0, 0);
	margin-bottom: 1.5rem;
}

.form-label {
	font-weight: 600;
}

.form-control {
	background-color: rgba(255, 255, 255, 0.95);
	border: 1px solid #ddd;
	color: #333;
	border-radius: 0.5rem;
	padding: 0.75rem 1rem;
	font-weight: 500;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.form-control:focus {
	background-color: #fff;
	color: #000;
	border-color: #ffc107;
	box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}

.form-control::placeholder {
	color: #777;
	opacity: 1;
	font-style: italic;
}

textarea.form-control {
	min-height: 120px;
}

.btn-primary {
	background-color: rgb(255, 70, 70);
	border: 1px solid black;
	font-weight: 700;
	transition: background-color 0.3s ease;
	color: rgb(255, 255, 255);
	border-radius: 0.5rem;
	box-shadow: 0 4px 10px rgba(255, 213, 79, 0.6);
}

.btn-primary:hover {
	background-color: rgb(255, 70, 70);
	box-shadow: 0 6px 15px rgba(40, 167, 69, 0.6);
	transform: scale(1.02);
	color: #fff;
}

.alert-success {
	background-color: rgba(76, 175, 80, 0.8);
	color: #fff;
	border-radius: 0.5rem;
}

footer {
	background-color: rgba(0, 0, 0, 0.75);
	padding: 1rem 0;
	font-weight: 500;
	font-size: 0.9rem;
}

/*==========================Mobile View===========================*/
@media (max-width: 768px) {
	.contact-form {
		padding: 2rem 1rem;
	}
}

/* ======= Mobile Sidebar (Visible only on small devices) ======= */
@media (max-width: 768px) {
	.mobile-sidebar {
		position: fixed;
		top: 10px;
		right: 10px;
		z-index: 1050;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	.sidebar-toggle {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 28px;
		height: 20px;
		cursor: pointer;
		background: none;
		border: none;
		padding: 0;
		z-index: 1060;
	}

	.sidebar-toggle .bar {
		height: 3px;
		width: 100%;
		background-color: rgb(0, 0, 0);
		border-radius: 2px;
	}

	.sidebar-content {
		display: none;
		margin-top: 10px;
		background: #ffffff;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
		border-radius: 10px;
		padding: 10px;
		width: 160px;
		text-align: right;
	}

	.sidebar-content .sidebar-link {
		display: block;
		padding: 10px;
		color: #000;
		font-weight: 600;
		text-decoration: none;
		border-radius: 6px;
		transition: background 0.2s;
	}

	.sidebar-content .sidebar-link:hover {
		background: #ffe0cc;
	}

	.sidebar-content .logout-link {
		width: 100%;
		text-align: right;
		background: none;
		border: none;
		color: #ff3e3e;
		cursor: pointer;
		font-weight: 600;
		padding: 10px;
	}
}

/* Hide mobile sidebar wrapper on screens wider than 991px */
@media (min-width: 992px) {
	.mobile-only {
		display: none !important;
	}
}