:root {
	--mounax-blue: #0066CC;
	--mounax-light-blue: #4D94FF;
	--mounax-dark-blue: #004999;
	--mounax-gray: #E0E0E0;
	--mounax-white: #FFFFFF;
	--mounax-dark: #1a1a1a;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #F5F5F5;
	color: #333;
	line-height: 1.6;
}

.navbar {
	background: linear-gradient(135deg, var(--mounax-blue) 0%, var(--mounax-dark-blue) 100%);
	padding: 1rem 2rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--mounax-white) !important;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: flex;
	align-items: center;
}

.navbar-brand img.logo {
	height: 50px;
	width: auto;
	margin-right: 15px;
	mix-blend-mode: screen;
	filter: brightness(1.2) contrast(1.1);
	transition: all 0.3s ease;
}

.navbar-brand:hover img.logo {
	filter: brightness(1.4) contrast(1.2);
	transform: scale(1.05);
}

.mounax-logo-transparent {
	background: transparent;
	mix-blend-mode: screen;
}

.navbar-nav .nav-link {
	color: var(--mounax-white) !important;
	margin: 0 15px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--mounax-light-blue) !important;
	transform: translateY(-2px);
}

.dropdown-menu {
	background: white;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
}

.dropdown-item {
	color: #333;
	padding: 10px 20px;
	transition: all 0.3s ease;
}

.dropdown-item:hover {
	background-color: var(--mounax-blue);
	color: white;
}

.hero-section {
	background: linear-gradient(135deg, var(--mounax-blue) 0%, var(--mounax-dark-blue) 100%);
	color: var(--mounax-white);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('/images/pattern.png') repeat;
	opacity: 0.1;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 30px;
	opacity: 0.95;
}

.btn-mounax {
	background-color: var(--mounax-white);
	color: var(--mounax-blue);
	border: none;
	padding: 12px 35px;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-mounax:hover {
	background-color: var(--mounax-light-blue);
	color: var(--mounax-white);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary {
	background-color: var(--mounax-blue);
	border-color: var(--mounax-blue);
	border-radius: 8px;
	padding: 10px 25px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: var(--mounax-dark-blue);
	border-color: var(--mounax-dark-blue);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.service-card {
	background: var(--mounax-white);
	border-radius: 15px;
	padding: 30px;
	margin: 20px 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border-left: 5px solid var(--mounax-blue);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.service-icon {
	font-size: 3rem;
	color: var(--mounax-blue);
	margin-bottom: 20px;
}

.card {
	border: none;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	overflow: hidden;
}

.card:hover {
	box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
}

.card-header {
	background: linear-gradient(135deg, var(--mounax-blue) 0%, var(--mounax-light-blue) 100%);
	color: var(--mounax-white);
	font-weight: bold;
	font-size: 1.3rem;
	padding: 20px;
	border-bottom: none;
}

.dashboard-card {
	background: linear-gradient(135deg, var(--mounax-blue) 0%, var(--mounax-light-blue) 100%);
	color: var(--mounax-white);
	padding: 30px;
	border-radius: 15px;
	margin: 15px 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.dashboard-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 102, 204, 0.3);
}

.dashboard-card h3 {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.table {
	background: var(--mounax-white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.table thead {
	background-color: var(--mounax-blue);
	color: var(--mounax-white);
}

.table th {
	font-weight: 600;
	padding: 15px;
	border: none;
}

.table td {
	padding: 15px;
	vertical-align: middle;
}

.table tbody tr:hover {
	background-color: #F0F7FF;
	transition: all 0.2s ease;
}

.form-control {
	border: 2px solid var(--mounax-gray);
	border-radius: 8px;
	padding: 12px;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: var(--mounax-blue);
	box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.form-label {
	font-weight: 600;
	color: #555;
	margin-bottom: 8px;
}

.badge {
	padding: 8px 15px;
	border-radius: 20px;
	font-weight: 600;
}

.badge-success {
	background-color: #28a745;
}

.badge-warning {
	background-color: #ffc107;
	color: #333;
}

.badge-danger {
	background-color: #dc3545;
}

.badge-info {
	background-color: var(--mounax-blue);
}

.footer {
	background: linear-gradient(135deg, var(--mounax-dark-blue) 0%, var(--mounax-blue) 100%);
	color: var(--mounax-white);
	padding: 40px 0 20px;
	margin-top: 60px;
}

.footer h5 {
	font-weight: bold;
	margin-bottom: 20px;
}

.footer a {
	color: var(--mounax-white);
	text-decoration: none;
	opacity: 0.9;
	transition: all 0.3s ease;
}

.footer a:hover {
	opacity: 1;
	color: var(--mounax-light-blue);
}

.contact-info {
	background: rgba(255, 255, 255, 0.1);
	padding: 20px;
	border-radius: 10px;
	margin-top: 20px;
}

.alert {
	border-radius: 10px;
	border: none;
	padding: 15px 20px;
	margin-bottom: 20px;
}

.alert-success {
	background-color: #d4edda;
	color: #155724;
}

.alert-danger {
	background-color: #f8d7da;
	color: #721c24;
}

.meter-box-img {
	max-width: 100%;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.features-list {
	list-style: none;
	padding: 0;
}

.features-list li {
	padding: 15px;
	margin: 10px 0;
	background: rgba(0, 102, 204, 0.1);
	border-left: 4px solid var(--mounax-blue);
	border-radius: 5px;
	transition: all 0.3s ease;
}

.features-list li:hover {
	background: rgba(0, 102, 204, 0.2);
	transform: translateX(10px);
}

.features-list li::before {
	content: '\u2713 ';
	color: var(--mounax-blue);
	font-weight: bold;
	font-size: 1.3rem;
	margin-right: 10px;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.navbar-brand {
		font-size: 1.5rem;
	}

	.dashboard-card h3 {
		font-size: 2rem;
	}
}

.login-container {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-card {
	max-width: 450px;
	width: 100%;
	background: var(--mounax-white);
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.login-header {
	text-align: center;
	margin-bottom: 30px;
}

.login-header h2 {
	color: var(--mounax-blue);
	font-weight: bold;
}

.document-item {
	background: #f8f9fa;
	padding: 15px;
	margin: 10px 0;
	border-radius: 8px;
	border-left: 4px solid var(--mounax-blue);
}

.status-badge {
	display: inline-block;
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.9rem;
}

.status-pending {
	background-color: #fff3cd;
	color: #856404;
}

.status-completed {
	background-color: #d4edda;
	color: #155724;
}

.status-cancelled {
	background-color: #f8d7da;
	color: #721c24;
}
.disabled {
	pointer-events: none;
	opacity: 0.65;
}

.hero-section-mounax {
	background: linear-gradient(135deg, var(--mounax-grey) 0%, var(--mounax-dark-blue) 100%);
	color: white;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.mounax-header-strip {
	background: var(--mounax-dark-blue);
	color: white;
	padding: 15px 0;
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 1px;
}

.service-bullet {
	background: rgba(77, 148, 255, 0.9);
	color: white;
	padding: 15px 20px;
	margin: 10px 0;
	border-radius: 5px;
	display: flex;
	align-items: center;
	font-size: 1.1rem;
	font-weight: 500;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

	.service-bullet:hover {
		background: rgba(0, 102, 204, 1);
		transform: translateX(5px);
	}

	.service-bullet i {
		font-size: 1.5rem;
		margin-right: 15px;
		color: white;
	}

.meter-showcase {
	position: relative;
	text-align: right;
}

.meter-label {
	background: white;
	color: var(--mounax-dark-blue);
	padding: 15px 30px;
	border-radius: 10px;
	display: inline-block;
	font-weight: bold;
	font-size: 1.3rem;
	margin-bottom: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.main-heading {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.sub-heading {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 30px;
	color: white;
}

.round-container {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: var(--mounax-dark-blue);
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	padding: 10px;
}

.container_rounddivs {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding-top: 50px;
}

.floating-promo {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 280px;
	padding: 16px;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	font-family: Arial, sans-serif;
}

	.floating-promo h4 {
		margin: 0 0 8px;
		font-size: 16px;
	}

	.floating-promo p {
		margin: 0 0 12px;
		font-size: 14px;
		color: #555;
	}

.promo-btn {
	display: inline-block;
	padding: 8px 12px;
	background: #0078d4;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-size: 14px;
}

	.promo-btn:hover {
		background: #005ea6;
	}

.promo-close {
	position: absolute;
	top: 6px;
	right: 8px;
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	color: #999;
}

.advert-tag {
	display: inline-block;
	background: var(--mounax-dark-blue);
	color: #fff;
	padding: 12px 24px;
	font-weight: bold;
	letter-spacing: 1px;
	transform: rotate(-20deg);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}