* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #0d0d0f;
	color: #f5f5f5;
	line-height: 1.6;
	overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	background: linear-gradient(135deg, #00d1ff, #ffd166);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

h2 {
	font-size: 2.5rem;
	color: #00d1ff;
}

h3 {
	font-size: 2rem;
	color: #ffd166;
}

p {
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.7;
}

a {
	color: #00d1ff;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #ff4d6d;
	text-shadow: 0 0 10px #ff4d6d;
}

/* Container and Grid */
.nm-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.nm-grid {
	display: grid;
	gap: 2rem;
}

.nm-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.nm-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.nm-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Header Styles */
.nm-header {
	background: linear-gradient(135deg, #1a1a1d, #0d0d0f);
	border-bottom: 2px solid #00d1ff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 209, 255, 0.1);
}

.nm-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
	position: relative;
}

.nm-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: #f5f5f5;
	text-shadow: 0 0 20px #00d1ff;
	transition: all 0.3s ease;
}

.nm-logo:hover {
	transform: scale(1.05);
	text-shadow: 0 0 30px #00d1ff;
}

.nm-nav {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.nm-nav-left,
.nm-nav-right {
	display: flex;
	gap: 2rem;
}

.nm-nav-link {
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.nm-nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 209, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.nm-nav-link:hover::before {
	left: 100%;
}

.nm-nav-link:hover {
	background: rgba(0, 209, 255, 0.1);
	box-shadow: 0 0 15px rgba(0, 209, 255, 0.3);
	transform: translateY(-2px);
}

.nm-nav-link.active {
	background: linear-gradient(135deg, #00d1ff, #ff4d6d);
	color: #0d0d0f;
	font-weight: 600;
}

/* Mobile Menu */
.nm-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0.5rem;
}

.nm-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #00d1ff;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.nm-mobile-toggle.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.nm-mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nm-mobile-toggle.active span:nth-child(3) {
	transform: rotate(45deg) translate(-6px, -8px);
}

.nm-mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: linear-gradient(135deg, #0d0d0f, #1a1a1d);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.nm-mobile-nav.active {
	display: flex;
	opacity: 1;
	visibility: visible;
}

.nm-mobile-nav .nm-nav-link {
	font-size: 2rem;
	text-align: center;
	padding: 1rem 2rem;
}

/* Button Styles */
.nm-btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 30px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	font-family: inherit;
	position: relative;
	overflow: hidden;
}

.nm-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.2) 0%,
		transparent 70%
	);
	transition: all 0.6s ease;
	transform: translate(-50%, -50%);
}

.nm-btn:hover::before {
	width: 300px;
	height: 300px;
}

.nm-btn-primary {
	background: linear-gradient(135deg, #00d1ff, #ff4d6d);
	color: #0d0d0f;
	box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
}

.nm-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 209, 255, 0.4);
}

.nm-btn-secondary {
	background: transparent;
	color: #00d1ff;
	border: 2px solid #00d1ff;
	box-shadow: 0 0 15px rgba(0, 209, 255, 0.2);
}

.nm-btn-secondary:hover {
	background: #00d1ff;
	color: #0d0d0f;
	box-shadow: 0 0 25px rgba(0, 209, 255, 0.5);
}

.nm-btn-large {
	padding: 1.5rem 3rem;
	font-size: 1.1rem;
}

/* Section Styles */
.nm-section {
	padding: 5rem 0;
	position: relative;
}

.nm-section:nth-child(even) {
	background: linear-gradient(135deg, #1a1a1d, #0d0d0f);
}

.nm-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.nm-section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #00d1ff, #ffd166);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nm-section-subtitle {
	font-size: 1.2rem;
	color: #b0b0b0;
	max-width: 600px;
	margin: 0 auto;
}

/* Hero Styles */
.nm-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(
			135deg,
			rgba(13, 13, 15, 0.8),
			rgba(26, 26, 29, 0.8)
		),
		url('assets/nm-hero.webp');
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	text-align: center;
}

.nm-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 70%,
			rgba(0, 209, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 30%,
			rgba(255, 77, 109, 0.1) 0%,
			transparent 50%
		);
}

.nm-hero-content {
	position: relative;
	z-index: 2;
}

.nm-hero h1 {
	font-size: 4rem;
	margin-bottom: 2rem;
	text-shadow: 0 4px 20px rgba(0, 209, 255, 0.3);
}

.nm-hero p {
	font-size: 1.3rem;
	margin-bottom: 3rem;
	color: #b0b0b0;
}

.nm-hero-buttons {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Card Styles */
.nm-card {
	background: linear-gradient(135deg, #1a1a1d, #121214);
	border-radius: 20px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
	height: 100%;
	border: 1px solid rgba(0, 209, 255, 0.1);
}

.nm-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 209, 255, 0.1),
		transparent
	);
	transition: left 0.8s ease;
}

.nm-card:hover::before {
	left: 100%;
}

.nm-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 209, 255, 0.2);
	border-color: #00d1ff;
}

.nm-card-icon {
	font-size: 3rem;
	color: #ffd166;
	margin-bottom: 1.5rem;
	text-shadow: 0 0 20px rgba(255, 209, 102, 0.5);
}

.nm-card h3 {
	margin-bottom: 1rem;
	color: #00d1ff;
}

.nm-card p {
	color: #b0b0b0;
	line-height: 1.6;
}

/* Interactive Cards */
.nm-interactive-card {
	cursor: pointer;
	position: relative;
}

.nm-interactive-card .nm-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 209, 255, 0.9),
		rgba(255, 77, 109, 0.9)
	);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.4s ease;
}

.nm-interactive-card:hover .nm-card-overlay {
	opacity: 1;
}

.nm-card-overlay-text {
	color: #f5f5f5;
	font-weight: 600;
	font-size: 1.2rem;
	text-align: center;
}

/* Team Profile Cards */
.nm-team-card {
	text-align: center;
}

.nm-team-avatar {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #00d1ff, #ff4d6d);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #f5f5f5;
	box-shadow: 0 0 30px rgba(0, 209, 255, 0.3);
	transition: all 0.3s ease;
}

.nm-team-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.nm-team-card:hover .nm-team-avatar {
	transform: scale(1.1);
	box-shadow: 0 0 40px rgba(0, 209, 255, 0.5);
}

.nm-team-name {
	font-size: 1.5rem;
	color: #00d1ff;
	margin-bottom: 0.5rem;
}

.nm-team-role {
	color: #ffd166;
	font-weight: 500;
	margin-bottom: 1rem;
}

.nm-team-bio {
	color: #b0b0b0;
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Timeline Styles */
.nm-timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.nm-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, #00d1ff, #ff4d6d, #ffd166);
	transform: translateX(-50%);
}

.nm-timeline-item {
	position: relative;
	margin: 3rem 0;
	padding: 0 2rem;
}

.nm-timeline-item:nth-child(odd) .nm-timeline-content {
	margin-right: 55%;
	text-align: right;
}

.nm-timeline-item:nth-child(even) .nm-timeline-content {
	margin-left: 55%;
	text-align: left;
}

.nm-timeline-content {
	background: linear-gradient(135deg, #1a1a1d, #121214);
	padding: 2rem;
	border-radius: 15px;
	position: relative;
	border: 1px solid rgba(0, 209, 255, 0.2);
	transition: all 0.3s ease;
}

.nm-timeline-content:hover {
	box-shadow: 0 10px 30px rgba(0, 209, 255, 0.2);
	transform: translateY(-5px);
}

.nm-timeline-dot {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 20px;
	height: 20px;
	background: #00d1ff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 20px rgba(0, 209, 255, 0.5);
}

/* Form Styles */
.nm-form {
	background: linear-gradient(135deg, #1a1a1d, #121214);
	padding: 3rem;
	border-radius: 20px;
	border: 1px solid rgba(0, 209, 255, 0.2);
}

.nm-form-group {
	margin-bottom: 2rem;
}

.nm-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #00d1ff;
	font-weight: 500;
}

.nm-form-input,
.nm-form-textarea,
.nm-form-select {
	width: 100%;
	padding: 1rem 1.5rem;
	background: rgba(13, 13, 15, 0.8);
	border: 2px solid rgba(0, 209, 255, 0.3);
	border-radius: 10px;
	color: #f5f5f5;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: inherit;
}

.nm-form-input:focus,
.nm-form-textarea:focus,
.nm-form-select:focus {
	outline: none;
	border-color: #00d1ff;
	box-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
	background: rgba(0, 209, 255, 0.05);
}

.nm-form-input::placeholder,
.nm-form-textarea::placeholder {
	color: #666;
}

.nm-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.nm-form-error {
	color: #ff4d6d;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.nm-form-error.show {
	display: block;
}

/* Tab Styles */
.nm-tabs {
	background: linear-gradient(135deg, #1a1a1d, #121214);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(0, 209, 255, 0.1);
}

.nm-tab-nav {
	display: flex;
	background: rgba(13, 13, 15, 0.8);
	border-bottom: 1px solid rgba(0, 209, 255, 0.2);
}

.nm-tab-button {
	flex: 1;
	padding: 1.5rem;
	background: none;
	border: none;
	color: #b0b0b0;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
	font-weight: 500;
	position: relative;
}

.nm-tab-button::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: #00d1ff;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.nm-tab-button:hover {
	color: #00d1ff;
	background: rgba(0, 209, 255, 0.1);
}

.nm-tab-button.active {
	color: #00d1ff;
	background: rgba(0, 209, 255, 0.1);
}

.nm-tab-button.active::after {
	transform: scaleX(1);
}

.nm-tab-content {
	padding: 3rem;
	display: none;
}

.nm-tab-content.active {
	display: block;
}

/* Modal Styles */
.nm-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 2000;
	animation: nm-fade-in 0.3s ease;
}

.nm-modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nm-modal-content {
	background: linear-gradient(135deg, #1a1a1d, #121214);
	border-radius: 20px;
	padding: 3rem;
	max-width: 600px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	border: 1px solid rgba(0, 209, 255, 0.2);
	animation: nm-scale-in 0.3s ease;
}

.nm-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	color: #ff4d6d;
	font-size: 2rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.nm-modal-close:hover {
	color: #f5f5f5;
	transform: scale(1.2);
}

/* Progress Bar */
.nm-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, #00d1ff, #ff4d6d, #ffd166);
	z-index: 1001;
	transition: width 0.3s ease;
}

/* Infographic Styles */
.nm-infographic {
	background: linear-gradient(135deg, #1a1a1d, #121214);
	border-radius: 20px;
	padding: 3rem;
	text-align: center;
	border: 1px solid rgba(255, 209, 102, 0.2);
}

.nm-stat {
	margin: 2rem 0;
}

.nm-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #ffd166;
	text-shadow: 0 0 20px rgba(255, 209, 102, 0.5);
}

.nm-stat-label {
	font-size: 1.1rem;
	color: #b0b0b0;
	margin-top: 0.5rem;
}

/* Chart Container */
.nm-chart-container {
	background: linear-gradient(135deg, #1a1a1d, #121214);
	border-radius: 20px;
	padding: 2rem;
	margin: 2rem 0;
	height: 100%;
	border: 1px solid rgba(0, 209, 255, 0.1);
}

.nm-chart-title {
	text-align: center;
	color: #00d1ff;
	margin-bottom: 2rem;
	font-size: 1.5rem;
}

/* Footer Styles */
.nm-footer {
	background: linear-gradient(135deg, #121214, #0d0d0f);
	padding: 4rem 0 2rem;
	border-top: 2px solid #00d1ff;
}

.nm-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.nm-footer-brand {
	text-align: center;
}

.nm-footer-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: #f5f5f5;
	margin-bottom: 1rem;
	text-shadow: 0 0 20px #00d1ff;
}

.nm-footer-tagline {
	color: #b0b0b0;
	font-style: italic;
	margin-bottom: 2rem;
}

.nm-footer-section h4 {
	color: #00d1ff;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.nm-footer-links {
	list-style: none;
}

.nm-footer-links li {
	margin-bottom: 0.8rem;
}

.nm-footer-links a {
	color: #b0b0b0;
	transition: color 0.3s ease;
}

.nm-footer-links a:hover {
	color: #00d1ff;
}

.nm-footer-contact {
	color: #b0b0b0;
	line-height: 1.8;
}

.nm-footer-contact strong {
	color: #ffd166;
}

.nm-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 209, 255, 0.2);
	color: #666;
}

/* Cookie Popup */
.nm-cookie-popup {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: linear-gradient(135deg, #1a1a1d, #121214);
	border: 2px solid #00d1ff;
	border-radius: 15px;
	padding: 2rem;
	max-width: 400px;
	z-index: 1500;
	box-shadow: 0 10px 30px rgba(0, 209, 255, 0.3);
	animation: nm-slide-in-right 0.5s ease;
}

.nm-cookie-popup.hidden {
	animation: nm-slide-out-right 0.5s ease forwards;
}

.nm-cookie-text {
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
	color: #b0b0b0;
	line-height: 1.5;
}

.nm-cookie-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.nm-cookie-link {
	color: #ffd166;
	font-size: 0.9rem;
	text-decoration: underline;
}

/* Animations */
@keyframes nm-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes nm-scale-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes nm-slide-in-right {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes nm-slide-out-right {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(100%);
		opacity: 0;
	}
}

@keyframes nm-glow {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
	}
	50% {
		box-shadow: 0 0 40px rgba(0, 209, 255, 0.6);
	}
}

/* Utility Classes */
.nm-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.nm-fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.nm-text-center {
	text-align: center;
}

.nm-text-glow {
	text-shadow: 0 0 20px currentColor;
}

.nm-mb-1 {
	margin-bottom: 1rem;
}
.nm-mb-2 {
	margin-bottom: 2rem;
}
.nm-mb-3 {
	margin-bottom: 3rem;
}

.nm-mt-1 {
	margin-top: 1rem;
}
.nm-mt-2 {
	margin-top: 2rem;
}
.nm-mt-3 {
	margin-top: 3rem;
}

/* Dark Theme Enhancements */
.nm-glass-effect {
	background: rgba(26, 26, 29, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 209, 255, 0.2);
}

.nm-neon-border {
	border: 2px solid transparent;
	background: linear-gradient(135deg, #1a1a1d, #121214) padding-box,
		linear-gradient(135deg, #00d1ff, #ff4d6d) border-box;
}

.nm-glow-hover:hover {
	animation: nm-glow 2s infinite;
}

/* Scroll Animations */
.nm-scroll-reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nm-scroll-reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

.nm-scroll-reveal-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nm-scroll-reveal-left.revealed {
	opacity: 1;
	transform: translateX(0);
}

.nm-scroll-reveal-right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nm-scroll-reveal-right.revealed {
	opacity: 1;
	transform: translateX(0);
}

/* Loading States */
.nm-loading {
	position: relative;
	overflow: hidden;
}

.nm-loading::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 209, 255, 0.2),
		transparent
	);
	animation: nm-loading-shimmer 1.5s infinite;
}

@keyframes nm-loading-shimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

/* Map Section */
.nm-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.nm-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.nm-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.nm-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.nm-container {
		padding: 0 1.5rem;
	}

	.nm-hero h1 {
		font-size: 3rem;
	}

	.nm-grid-4 {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
}

@media (max-width: 768px) {
	body {
		padding-top: 80px;
	}

	.nm-nav-left,
	.nm-nav-right,
	.nm-nav {
		display: none;
	}

	.nm-mobile-toggle {
		display: flex;
	}

	.nm-hero h1 {
		font-size: 2.5rem;
	}

	.nm-hero p {
		font-size: 1.1rem;
	}

	.nm-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.nm-section {
		padding: 3rem 0;
	}

	.nm-section-title {
		font-size: 2rem;
	}

	.nm-card {
		padding: 2rem;
	}

	.nm-timeline::before {
		left: 30px;
	}

	.nm-timeline-item:nth-child(odd) .nm-timeline-content,
	.nm-timeline-item:nth-child(even) .nm-timeline-content {
		margin-left: 40px;
		margin-right: 0;
		text-align: left;
	}

	.nm-timeline-dot {
		left: 30px;
	}

	.nm-tab-nav {
		flex-direction: column;
	}

	.nm-cookie-popup {
		bottom: 1rem;
		right: 1rem;
		left: 1rem;
		max-width: none;
	}

	.nm-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 480px) {
	.nm-container {
		padding: 0 1rem;
	}
	/* 
	.nm-timeline-item:nth-child(odd) .nm-timeline-content,
	.nm-timeline-item:nth-child(even) .nm-timeline-content {
		margin-left: 25px;
	} */

	.nm-timeline-content h3 {
		font-size: 1.2rem;
		word-break: break-all;
	}

	.nm-timeline-item {
		padding: 20px;
	}
	.nm-hero h1 {
		font-size: 2rem;
	}

	.nm-card h3 {
		font-size: 1.5rem;
		word-wrap: break-word;
	}

	.nm-grid-2 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.nm-section-title {
		font-size: 1.8rem;
	}

	.nm-card {
		padding: 1.5rem;
	}

	.nm-form {
		padding: 2rem;
	}

	.nm-modal-content {
		padding: 2rem;
		width: 95%;
	}

	.nm-mobile-nav .nm-nav-link {
		font-size: 1.2rem;
	}

	.nm-btn {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	.nm-tab-content {
		padding: 1rem;
	}

	.nm-tab-content h3,
	.nm-infographic h3 {
		word-break: break-all;
		font-size: 1.5rem;
	}
}

.nm-contact-hero {
	background: linear-gradient(
			135deg,
			rgba(13, 13, 15, 0.9),
			rgba(26, 26, 29, 0.8)
		),
		radial-gradient(
			circle at 30% 70%,
			rgba(0, 209, 255, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 30%,
			rgba(255, 77, 109, 0.1) 0%,
			transparent 50%
		);
	min-height: 70vh;
}

/* Contact Info Section */
.nm-contact-info-section {
	background: linear-gradient(135deg, #1a1a1d, #0d0d0f);
	padding: 6rem 0;
}

.nm-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.nm-contact-info-card {
	background: linear-gradient(135deg, #1a1a1d, #121214);
	border-radius: 20px;
	padding: 3rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
	border: 1px solid rgba(0, 209, 255, 0.1);
}

.nm-contact-info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 209, 255, 0.1),
		transparent
	);
	transition: left 0.8s ease;
}

.nm-contact-info-card:hover::before {
	left: 100%;
}

.nm-contact-info-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 209, 255, 0.2);
	border-color: #00d1ff;
}

.nm-contact-info-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #00d1ff, #ff4d6d);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	font-size: 2rem;
	color: #f5f5f5;
	box-shadow: 0 0 30px rgba(0, 209, 255, 0.3);
	transition: all 0.3s ease;
}

.nm-contact-info-card:hover .nm-contact-info-icon {
	transform: scale(1.1);
	box-shadow: 0 0 40px rgba(0, 209, 255, 0.5);
}

.nm-contact-info-card h3 {
	color: #00d1ff;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.nm-contact-info-card p {
	color: #b0b0b0;
	margin-bottom: 2rem;
	line-height: 1.6;
}

/* Contact Form Section */
.nm-contact-section {
	padding: 6rem 0;
	background: linear-gradient(135deg, #0d0d0f, #1a1a1d);
}

.nm-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.nm-contact-form-container {
	background: linear-gradient(135deg, #1a1a1d, #121214);
	border-radius: 20px;
	padding: 3rem;
	border: 1px solid rgba(0, 209, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.nm-contact-form-container::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, #00d1ff, #ff4d6d, #ffd166);
	border-radius: 20px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.nm-contact-form-container:hover::before {
	opacity: 0.1;
}

.nm-contact-form-container h2 {
	color: #00d1ff;
	font-size: 2rem;
	margin-bottom: 1rem;
	text-align: center;
}

.nm-contact-description {
	color: #b0b0b0;
	text-align: center;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.nm-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.nm-form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.nm-form-checkbox input[type='checkbox'] {
	width: 20px;
	height: 20px;
	accent-color: #00d1ff;
	margin-top: 0.2rem;
}

.nm-form-checkbox label {
	color: #b0b0b0;
	font-size: 0.9rem;
	line-height: 1.5;
}

.nm-form-checkbox label a {
	color: #ffd166;
	text-decoration: underline;
}

/* Contact Map Section */
.nm-contact-map-section {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.nm-contact-details {
	background: linear-gradient(135deg, #1a1a1d, #121214);
	border-radius: 20px;
	padding: 2.5rem;
	border: 1px solid rgba(255, 209, 102, 0.2);
}

.nm-contact-details h3 {
	color: #ffd166;
	font-size: 1.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.nm-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0, 209, 255, 0.1);
}

.nm-contact-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.nm-contact-item-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #ffd166, #ff4d6d);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0d0d0f;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.nm-contact-item div {
	color: #b0b0b0;
	line-height: 1.6;
}

.nm-contact-item strong {
	color: #f5f5f5;
	display: block;
	margin-bottom: 0.3rem;
}

/* Transport Info */
.nm-transport-info {
	background: linear-gradient(135deg, #121214, #1a1a1d);
	border-radius: 15px;
	padding: 2rem;
	border: 1px solid rgba(255, 77, 109, 0.2);
}

.nm-transport-info h4 {
	color: #ff4d6d;
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.nm-transport-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	padding: 0.8rem;
	background: rgba(0, 209, 255, 0.05);
	border-radius: 10px;
	border-left: 3px solid #00d1ff;
	transition: all 0.3s ease;
}

.nm-transport-item:hover {
	background: rgba(0, 209, 255, 0.1);
	transform: translateX(5px);
}

.nm-transport-item:last-child {
	margin-bottom: 0;
}

.nm-transport-item i {
	color: #00d1ff;
	font-size: 1.2rem;
	width: 20px;
	text-align: center;
}

.nm-transport-item span {
	color: #b0b0b0;
	font-size: 0.9rem;
}

/* Accordion Styles */
.nm-accordion {
	max-width: 800px;
	margin: 0 auto;
}

.nm-accordion-item {
	background: linear-gradient(135deg, #1a1a1d, #121214);
	border-radius: 15px;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(0, 209, 255, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
}

.nm-accordion-item:hover {
	border-color: #00d1ff;
	box-shadow: 0 5px 20px rgba(0, 209, 255, 0.1);
}

.nm-accordion-header {
	width: 100%;
	padding: 2rem;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	color: #f5f5f5;
	font-size: 1.1rem;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	font-family: inherit;
}

.nm-accordion-header:hover {
	color: #00d1ff;
}

.nm-accordion-icon {
	color: #ffd166;
	font-size: 1rem;
	transition: transform 0.3s ease;
}

.nm-accordion-item.active .nm-accordion-icon {
	transform: rotate(180deg);
	color: #00d1ff;
}

.nm-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.nm-accordion-item.active .nm-accordion-content {
	max-height: 200px;
}

.nm-accordion-body {
	padding: 0 2rem 2rem;
	color: #b0b0b0;
	line-height: 1.7;
}

/* Newsletter Section */
.nm-newsletter-section {
	background: linear-gradient(135deg, #121214, #0d0d0f);
	border-top: 1px solid rgba(0, 209, 255, 0.2);
}

.nm-newsletter-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 2rem;
}

.nm-newsletter-text h2 {
	color: #00d1ff;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.nm-newsletter-text p {
	color: #b0b0b0;
	font-size: 1.2rem;
	max-width: 600px;
}

.nm-newsletter-form {
	display: flex;
	gap: 1rem;
	width: 100%;
	max-width: 500px;
	align-items: stretch;
}

.nm-newsletter-input {
	flex: 1;
	padding: 1rem 1.5rem;
	background: rgba(26, 26, 29, 0.8);
	border: 2px solid rgba(0, 209, 255, 0.3);
	border-radius: 10px;
	color: #f5f5f5;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
}

.nm-newsletter-input:focus {
	outline: none;
	border-color: #00d1ff;
	box-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
	background: rgba(0, 209, 255, 0.05);
}

.nm-newsletter-input::placeholder {
	color: #666;
}

.nm-newsletter-note {
	color: #666;
	font-size: 0.9rem;
	text-align: center;
	margin-top: 1rem;
}

.nm-newsletter-note a {
	color: #ffd166;
	text-decoration: underline;
}

/* Button Disabled State */
.nm-btn-disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
	.nm-contact-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.nm-contact-info-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 2rem;
	}

	.nm-contact-map-section {
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.nm-contact-hero {
		min-height: 60vh;
		padding: 2rem 0;
	}

	.nm-contact-info-section {
		padding: 4rem 0;
	}

	.nm-contact-info-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.nm-contact-info-card {
		padding: 2rem 1.5rem;
	}

	.nm-contact-section {
		padding: 4rem 0;
	}

	.nm-contact-form-container {
		padding: 2rem;
	}

	.nm-form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.nm-newsletter-form {
		flex-direction: column;
		gap: 1rem;
	}

	.nm-accordion-header {
		padding: 1.5rem;
		font-size: 1rem;
	}

	.nm-accordion-body {
		padding: 0 1.5rem 1.5rem;
	}
}

.nm-policy-page {
	max-width: 900px;
	margin: 100px auto 50px;
	padding: 2rem;
	background: linear-gradient(135deg, #1a1a1d, #121214);
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 209, 255, 0.1);
	border: 1px solid rgba(0, 209, 255, 0.2);
}

.nm-policy-page h1 {
	font-size: 2.5rem;
	color: #00d1ff;
	margin-bottom: 1rem;
	text-align: center;
	text-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
}

.nm-policy-updated {
	color: #b0b0b0;
	text-align: center;
	margin-bottom: 3rem;
	font-style: italic;
}

.nm-policy-section {
	margin-bottom: 3rem;
}

.nm-policy-section h2 {
	color: #00d1ff;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid rgba(0, 209, 255, 0.3);
	padding-bottom: 0.5rem;
}

.nm-policy-list {
	padding-left: 1.5rem;
	margin: 1rem 0;
	list-style-type: disc;
	color: #b0b0b0;
}

.nm-policy-list li {
	margin-bottom: 0.75rem;
	line-height: 1.6;
	word-wrap: break-word;
}

.nm-policy-highlight {
	background: rgba(0, 209, 255, 0.1);
	padding: 1.5rem;
	border-radius: 10px;
	margin: 1.5rem 0;
	border-left: 4px solid #00d1ff;
}

.nm-policy-subtitle {
	color: #ffd166;
	margin: 1.5rem 0 1rem;
	font-size: 1.3rem;
	font-weight: 600;
}

.nm-policy-link {
	color: #00d1ff;
	text-decoration: none;
	transition: color 0.3s;
}

.nm-policy-link:hover {
	color: #ff4d6d;
	text-shadow: 0 0 10px rgba(255, 77, 109, 0.5);
}

.nm-policy-contact-info {
	background: rgba(255, 209, 102, 0.1);
	padding: 1.5rem;
	border-radius: 10px;
	margin: 1.5rem 0;
	border-left: 4px solid #ffd166;
}

.nm-policy-contact-info h3 {
	color: #ffd166;
	margin-bottom: 1rem;
}

.nm-policy-contact-info p {
	color: #b0b0b0;
	margin-bottom: 0.5rem;
}

/* Cookie Table Styles */
.nm-cookies-table {
	margin: 2rem 0;
	overflow-x: auto;
}

.nm-policy-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(26, 26, 29, 0.5);
	border-radius: 10px;
	overflow: hidden;
}

.nm-policy-table th,
.nm-policy-table td {
	padding: 15px 20px;
	border: 1px solid rgba(0, 209, 255, 0.2);
	text-align: left;
}

.nm-policy-table th {
	background: linear-gradient(135deg, #00d1ff, #ff4d6d);
	color: #f5f5f5;
	font-weight: 600;
}

.nm-policy-table tr:nth-child(even) {
	background: rgba(0, 209, 255, 0.05);
}

.nm-policy-table td {
	color: #b0b0b0;
}

.nm-policy-back-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #00d1ff, #ff4d6d);
	color: #f5f5f5;
	padding: 1rem 2rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 3rem;
}

.nm-policy-back-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 209, 255, 0.4);
	color: #f5f5f5;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
	.nm-policy-page {
		margin: 80px 20px 40px;
		padding: 1.5rem;
	}

	.nm-policy-page h1 {
		font-size: 2rem;
	}

	.nm-policy-section h2 {
		font-size: 1.5rem;
	}

	.nm-policy-table th,
	.nm-policy-table td {
		padding: 10px 12px;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.nm-contact-hero h1 {
		font-size: 2rem;
	}

	.nm-policy-page h1 {
		font-size: 1.5rem;
	}

	.nm-policy-section h2 {
		font-size: 1.2rem;
		word-wrap: break-word;
	}

	.nm-policy-contact-info h3 {
		font-size: 1.2rem;
		word-wrap: break-word;
	}
	.nm-contact-info-card {
		padding: 2rem 1rem;
	}

	.nm-contact-info-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.nm-contact-form-container {
		padding: 1.5rem;
	}

	.nm-contact-details {
		padding: 2rem;
	}

	.nm-transport-info {
		padding: 1.5rem;
	}

	.nm-newsletter-text h2 {
		font-size: 2rem;
	}

	.nm-newsletter-text p {
		font-size: 1rem;
	}
}
