/*Author: Aventies Professional Services
https://avintisservices.com/
*/
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
    /* Base */
    --bg: #ffffff;
    --surface: #f8fafc;
    --surface2: #eef6ff;
    --border: rgba(0, 0, 0, 0.08);

    /* Primary Brand Colors */
    --primary: #00c896;        /* AUMAX Teal */
    --primary-dark: #00a87d;
    --primary-light: rgba(0, 200, 150, 0.15);

    /* Secondary (Blue Accent) */
    --secondary: #00a8e0;
    --secondary-dark: #007bb5;
    --secondary-light: rgba(0, 168, 224, 0.15);

    /* Accent (Logo Purple Tone) */
    --accent: #271c6f;
    --accent-light: rgba(39, 28, 111, 0.1);

    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --text-light: #777;

    /* Neutral */
    --white: #ffffff;
    --grey: #f1f5f9;
}

html {
	scroll-behavior: smooth;
}

body {
	padding-top: 70px;
	/* adjust based on navbar height */
	font-family: 'Inter', system-ui, sans-serif;
	background: var(--bg);
	/*background-image: url(../images/stars-bg.png);*/
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* ── NAV ── */
nav {
	position: fixed;
	/* keeps it always at top */
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	background: rgba(0, 173, 213);
	backdrop-filter: blur(10px);
	color:var(--white);
	z-index: 9999;
	/* ensures it's above everything */
}

.nav-logo {
	font-size: 10px;
	font-weight: normal;
	color: var(--white);
	text-decoration: none;
    font-style: italic;
}

/* Links */
.nav-links {
	display: flex;
	gap: 20px;
        display: inline-block;
    vertical-align: middle;

}

.nav-links a {
	color:var(--white);
	text-decoration: none;
	font-size: 15px;
	transition: 0.3s;
margin-left:10px;
}

.nav-links a:hover {
	color:var(--grey);
}

/* CTA */
.nav-cta {
	background: #00c2ff;
	padding: 8px 14px;
	border-radius: 6px;
	font-weight: 800;
}

/* Hamburger */
.menu-toggle {
	display: none;
	font-size: 24px;
	cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.nav-links {
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background: #0a0a0a;
		flex-direction: column;
		align-items: center;
		gap: 15px;
		padding: 20px 0;
		display: none;
	}

	.nav-links.active {
		display: flex;
	}
}

/* ── HERO ── */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 120px 24px 80px;
	position: relative;
	overflow: hidden;
	background-image: url(../images/aumaxbg.png);
    background-size:100%;
    background-position-x: center;

}

.hero::before {
	content: '';
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 900px;
	background: radial-gradient(ellipse, rgba(0, 200, 150, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(0, 200, 150, 0.3);
	background: rgba(0, 200, 150, 0.07);
	color: var(--teal);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 32px;
	text-transform: uppercase;
}

.hero-badge::before {
	content: '●';
	font-size: 8px;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: .4;
	}
}

.hero h1 {
	font-size: clamp(40px, 6vw, 80px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	/*max-width: 900px; */
	margin-bottom: 24px;
}

.hero h1 em {
	font-style: normal;
	background: linear-gradient(135deg, #00c896, #00a8e0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub {
	font-size: clamp(16px, 2vw, 20px);
	color: var(--text-primary);
	max-width: 680px;
	margin-bottom: 48px;
	font-weight: 400;
	line-height: 1.7;
}

.hero-ctas {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 72px;
}

.btn-primary {
	background: var(--secondary-dark);
	color: var(--white);
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: opacity .2s, transform .2s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-primary:hover {
	opacity: 0.8;
	transform: translateY(-1px);
    
}

.btn-secondary {
	background: var(--primary);
	color: var(--white);
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
	border: 1px solid var(--border);
	transition: border-color .2s, background .2s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-secondary:hover {
	opacity: 0.8;
	transform: translateY(-1px);
}

/* ── CREDIBILITY BAR ── */
.cred-bar {
	display: flex;
	gap: 0;
	flex-wrap: wrap;
	justify-content: center;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--surface);
	overflow: hidden;
	max-width: 900px;
	width: 100%;
}

.cred-item {
	flex: 1;
	min-width: 160px;
	padding: 16px 20px;
	text-align: center;
	border-right: 1px solid var(--border);
	font-size: 12px;

    opacity: 0.8;
 /*   background: radial-gradient(circle, transparent 20%, #e5e5f7 20%, #e5e5f7 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, #e5e5f7 20%, #e5e5f7 80%, transparent 80%, transparent) 25px 25px, linear-gradient(#f1f5f9 2px, transparent 2px) 0 -1px, linear-gradient(90deg, #f1f5f9 2px, #e5e5f7 2px) -1px 0;*/
    background-size: 50px 50px, 50px 50px, 25px 25px, 25px 25px;
}

.cred-item:last-child {
	border-right: none;
}

.cred-label {
	color: var(--text-primary);
	margin-bottom: 4px;
	font-weight: 500;
}

.cred-value {
	color: var(--text-secondary);
	font-weight: 700;
	font-size: 13px;
}

/* ── SECTION COMMON ── */
section {
	padding: 96px 48px;
	max-width: 1200px;
	margin: 0 auto;
}

.section-tag {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 16px;
}

h2.section-title {
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin-bottom: 16px;
}

.section-sub {
	font-size: 18px;
	color: var(--secondary);
	/*max-width: 600px;*/
	line-height: 1.7;
	margin-bottom: 25px;
}

.section-sub-bottom {
	font-size: 22px;
	color: var(--light);
	max-width: 100%;
	line-height: 1.7;
	margin-bottom: 56px;
	font-style: italic;
	text-align: center;
}

/* ── PROBLEM BANNER ── */
.problem-banner {
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 48px;
	text-align: center;
}

.problem-banner p {
	font-size: clamp(18px, 2.5vw, 26px);
	font-weight: 500;
	max-width: 860px;
	margin: 0 auto;
	color: var(--light);
	line-height: 1.6;
}

.problem-banner strong {
	color: var(--white);
}

/* ── THREE COLUMNS ── */
.three-col {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}

.three-col-item {
	background: var(--surface);
	padding: 36px;
}

.col-icon {
	font-size: 28px;
	margin-bottom: 16px;
}

.col-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--white);
}

.col-body {
	font-size: 14px;
	color: var(--light);
	line-height: 1.7;
}

/* ── USE CASES GRID ── */
.usecase-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.usecase-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 10px;
	transition: border-color .2s, transform .2s;
	cursor: default;
}

.usecase-card:hover {
	border-color: rgba(0, 200, 150, 0.3);
	transform: translateY(-2px);
}

.usecase-card:nth-child(4),
.usecase-card:nth-child(5) {
	grid-column: span 1;
}

.usecase-num {
	font-size: 12px;
	font-weight: 700;
	color: var(--teal);
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}

.usecase-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	text-align:center;
}

.usecase-img{
	text-align:center;
}
.usecase-body {
	font-size: clamp(16px, 6vw, 16px);
	color: var(--light);
	line-height: 1.7;
	margin-bottom: 20px;
	text-align:center;
}

.usecase-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 4px 10px;
	border-radius: 4px;
	background: rgba(0, 200, 150, 0.1);
	color: var(--teal);
	border: 1px solid rgba(0, 200, 150, 0.2);
}

/* ── COMPARISON TABLE ── */
.comp-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.comp-table th {
	padding: 16px 20px;
	text-align: left;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--grey);
	border-bottom: 1px solid var(--border);
	background: var(--surface);
}

.comp-table th:last-child {
	color: var(--teal);
}

.comp-table td {
	padding: 18px 20px;
	border-bottom: 1px solid var(--border);
	color: var(--light);
	vertical-align: top;
	line-height: 1.6;
}

.comp-table td:first-child {
	font-weight: 600;
	color: var(--white);
	white-space: nowrap;
}

.comp-table td:last-child {
	color: var(--white);
}

.comp-table tr:last-child td {
	border-bottom: none;
}

.comp-table tr:hover td {
	background: rgba(255, 255, 255, 0.02);
}

.comp-note {
	font-size: 16px;
	color: var(--grey);
	text-align: center;
	margin-top: 20px;
	font-style: italic;
}

.table-wrap {
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: auto;
	background: var(--surface);
}

/* ── IP BAR ── */
.ip-bar {
	background: var(--surface2);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 36px 40px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.ip-item {}

.ip-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--grey);
	margin-bottom: 8px;
}

.ip-value {
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
}

.ip-value.green {
	color: var(--teal);
}

/* ── REGULATORY ── */
.reg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.reg-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px;
}

.reg-flag {
	font-size: 28px;
	margin-bottom: 12px;
}

.reg-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--teal);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 6px;
}

.reg-full {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 10px;
}

.reg-body {
	font-size: 13px;
	color: var(--light);
	line-height: 1.65;
}

.reg-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--teal);
}

.reg-status::before {
	content: '●';
	font-size: 8px;
}

/* ── CONTACT ── */
.contact-section {
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 80px 48px;
	text-align: center;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 700px;
	margin: 48px auto 0;
}

.contact-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px;
	text-align: left;
}

.contact-role {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--teal);
	margin-bottom: 8px;
}

.contact-name {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
}

.contact-title {
	font-size: 13px;
	color: var(--secondary-dark);
	margin-bottom: 16px;
}

.contact-email {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--teal);
	text-decoration: none;
	font-weight: 500;
}

.contact-email:hover {
	text-decoration: underline;
}

/* ── FOOTER ── */
footer {
	padding: 40px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--border);
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-logo img {
	height: 24px;
	width: auto;
	object-fit: contain;
	filter: invert(1);
	opacity: 0.6;
}

.footer-logo span {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--grey);
}

.footer-copy {
	font-size: 13px;
	color: var(--text-primary);
}

.footer-links {
	display: flex;
	gap: 24px;
}

.footer-links a {
	font-size: 13px;
	color: var(--grey);
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--white);
}

/* ── DIVIDER ── */
.divider {
	border: none;
	border-top: 1px solid var(--border);
	margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
	nav {
		
        padding: 10px 20px;
        
	}

	.nav-links {
		display: none;
	}

	section {
		padding: 64px 20px;
	}

	.three-col {
		grid-template-columns: 1fr;
	}

	.usecase-grid {
		grid-template-columns: 1fr 1fr;
	}

	.comp-table {
		font-size: 13px;
	}

	.ip-bar {
		grid-template-columns: 1fr 1fr;
	}

	.reg-grid {
		grid-template-columns: 1fr 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	footer {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.cred-item {
		min-width: 130px;
	}
}

@media (max-width: 600px) {
	.usecase-grid {
		grid-template-columns: 1fr;
	}

	.reg-grid {
		grid-template-columns: 1fr;
	}

	.ip-bar {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.nav-links {
		position: fixed;
		/* change from absolute → fixed */
		top: 70px;
		/* same as navbar height */
		left: 0;
		width: 100%;
		z-index: 9998;
        background-color: var(--secondary);
	}
}
.headingtitle{
	font-style: normal;
	background: linear-gradient(135deg, #00c896, #00a8e0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Gallery Images */
.gallery img {
    width: 250px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
    margin: 10px;
}
.gallery img:hover {
    transform: scale(1.05);
}

/* Popup Background */
.popup {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
}

/* Popup Image */
.popup-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
}

/* Close Button */
.close-popup {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}