:root {
--primary: #004a7a;
--primary-dark: #003454;
--accent: #e53935;
--text: #222222;
--muted: #6f7b8a;
--bg: #f5f7fb;
--white: #ffffff;
--max-width: 1200px;
--shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
--radius: 6px;
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--text);
background-color: var(--white);
line-height: 1.6;
}

a {
color: inherit;
text-decoration: none;
}

img {
max-width: 100%;
display: block;
}

/* Top bar */

.top-bar {
background: var(--primary-dark);
color: var(--white);
font-size: 0.85rem;
padding: 6px 16px;
}

.top-bar-inner {
max-width: var(--max-width);
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}

.top-bar a {
color: var(--white);
font-weight: 500;
}

/* Header / Nav */

header {
background: var(--white);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
position: sticky;
top: 0;
z-index: 999;
}

.nav-inner {
max-width: var(--max-width);
margin: 0 auto;
padding: 10px 16px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}

.brand {
display: flex;
align-items: center;
gap: 10px;
}

.brand img {
height: 52px;
width: auto;
}

.brand-text {
display: flex;
flex-direction: column;
}

.brand-text span:first-child {
font-weight: 700;
letter-spacing: 0.03em;
font-size: 1.05rem;
}

.brand-text span:last-child {
font-size: 0.85rem;
color: var(--muted);
}

nav ul {
list-style: none;
display: flex;
align-items: center;
gap: 18px;
font-size: 0.95rem;
}

nav a {
padding: 6px 0;
font-weight: 500;
color: var(--text);
}

nav a:hover,
nav a.active {
color: var(--primary);
}

.nav-cta {
padding: 8px 16px;
border-radius: 999px;
background: var(--primary);
color: var(--white);
font-size: 0.9rem;
font-weight: 600;
box-shadow: 0 6px 16px rgba(0, 74, 122, 0.25);
}

.nav-cta:hover {
background: var(--primary-dark);
}

.nav-toggle {
display: none;
border: none;
background: transparent;
font-size: 1.5rem;
cursor: pointer;
}

@media (max-width: 860px) {
nav {
position: absolute;
top: 64px;
left: 0;
right: 0;
background: var(--white);
border-top: 1px solid #e4e8f0;
box-shadow: var(--shadow-soft);
display: none;
}

nav.open {
display: block;
}

nav ul {
flex-direction: column;
align-items: flex-start;
padding: 12px 16px 16px;
}

.nav-cta {
width: 100%;
text-align: center;
}

.nav-toggle {
display: block;
}
}

/* Hero */

.hero {
position: relative;
overflow: hidden;
background: linear-gradient(135deg, var(--primary-dark), #001b33);
color: var(--white);
}

.hero-inner {
max-width: var(--max-width);
margin: 0 auto;
padding: 60px 16px 70px;
display: grid;
grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
gap: 32px;
align-items: center;
}

.hero-kicker {
text-transform: uppercase;
letter-spacing: 0.12em;
font-size: 0.75rem;
color: #a7c9e7;
font-weight: 600;
margin-bottom: 10px;
}

.hero h1 {
font-size: clamp(2.2rem, 3.3vw + 1.2rem, 3rem);
line-height: 1.1;
margin-bottom: 16px;
}

.hero p {
font-size: 0.98rem;
max-width: 520px;
color: #d3e3f5;
margin-bottom: 24px;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: center;
}

.btn-primary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 10px 20px;
border-radius: 999px;
border: none;
background: var(--accent);
color: var(--white);
font-weight: 600;
font-size: 0.95rem;
cursor: pointer;
box-shadow: 0 10px 24px rgba(229, 57, 53, 0.4);
}

.btn-primary:hover {
background: #c62828;
}

.btn-ghost {
padding: 9px 18px;
border-radius: 999px;
border: 1px solid rgba(255, 255, 255, 0.5);
font-size: 0.9rem;
color: var(--white);
}

.hero-note {
font-size: 0.78rem;
opacity: 0.85;
margin-top: 8px;
}

.hero-card {
background: rgba(2, 32, 61, 0.9);
border-radius: 16px;
padding: 18px 18px 16px;
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
border: 1px solid rgba(150, 197, 236, 0.3);
font-size: 0.82rem;
color: #c2d6ee;
}

/* Generic sections */

section {
padding: 60px 16px;
}

.section-inner {
max-width: var(--max-width);
margin: 0 auto;
}

.section-kicker {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.18em;
color: var(--muted);
margin-bottom: 8px;
font-weight: 600;
}

.section-title {
font-size: 1.6rem;
margin-bottom: 10px;
}

.section-subtitle {
font-size: 0.95rem;
color: var(--muted);
max-width: 620px;
margin-bottom: 26px;
}

/* Services grid */

.services-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
}

.service-card {
background: var(--white);
border-radius: var(--radius);
padding: 18px 18px 16px;
box-shadow: var(--shadow-soft);
border-top: 3px solid var(--primary);
}

.service-tag {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.14em;
color: var(--muted);
margin-bottom: 8px;
}

.service-card h3 {
font-size: 1rem;
margin-bottom: 4px;
}

.service-card p {
font-size: 0.9rem;
color: var(--muted);
margin-bottom: 10px;
}

.service-list {
list-style: none;
font-size: 0.85rem;
color: var(--text);
}

.service-list li::before {
content: "•";
margin-right: 6px;
color: var(--primary);
}

.service-link {
display: inline-block;
margin-top: 10px;
font-size: 0.85rem;
font-weight: 600;
color: var(--primary);
}

.service-link::after {
content: " →";
}

/* Tables / assets */

.assets-table-wrap {
margin-top: 12px;
overflow-x: auto;
border-radius: var(--radius);
box-shadow: var(--shadow-soft);
}

table {
width: 100%;
border-collapse: collapse;
background: var(--white);
font-size: 0.85rem;
}

thead {
background: #f0f3fb;
}

th,
td {
padding: 10px 12px;
text-align: left;
white-space: nowrap;
}

th {
font-weight: 600;
color: var(--muted);
border-bottom: 1px solid #dde5f3;
}

tbody tr:nth-child(even) {
background: #fafbff;
}

tbody tr:hover {
background: #eef3ff;
}

.tag-status {
display: inline-flex;
align-items: center;
padding: 3px 8px;
border-radius: 999px;
font-size: 0.75rem;
font-weight: 500;
}

.tag-available {
background: #e6f4ea;
color: #137333;
}

.tag-loi {
background: #fff4e5;
color: #92400e;
}

.tag-offmarket {
background: #f3e8ff;
color: #6b21a8;
}

.btn-table {
padding: 5px 10px;
border-radius: 999px;
border: 1px solid #c5d0e3;
font-size: 0.8rem;
background: #f8fafc;
}

/* Layout helpers */

.two-col {
display: grid;
grid-template-columns: 2fr 1.2fr;
gap: 24px;
align-items: flex-start;
}

@media (max-width: 980px) {
.services-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.two-col {
grid-template-columns: 1fr;
}
}

@media (max-width: 640px) {
.services-grid {
grid-template-columns: 1fr;
}
}

/* Contact */

.contact-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 24px;
}

.contact-card,
/* CONTACT FORM LAYOUT – stacked like original */

.contact-form {
max-width: 720px;
margin: 32px auto 56px;
padding: 24px 24px 28px;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(15, 35, 52, 0.12);
display: block;
}

.contact-form label {
display: block;
font-size: 0.9rem;
font-weight: 500;
color: #555b6b;
margin-bottom: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
display: block;
width: 100%;
margin-top: 6px;
padding: 10px 12px;
border-radius: 8px;
border: 1px solid #d4d8e1;
font-size: 0.95rem;
font-family: inherit;
box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
outline: none;
border-color: #1a4c8f;
box-shadow: 0 0 0 1px rgba(26, 76, 143, 0.18);
}

.contact-form textarea {
resize: vertical;
min-height: 140px;
}

.contact-form .btn-primary,
.contact-form button.btn-primary {
margin-top: 4px;
display: inline-block;
}
.contact-row {
display: flex;
gap: 10px;
font-size: 0.9rem;
margin-bottom: 8px;
}

.contact-label {
font-weight: 600;
width: 90px;
}

.field {
margin-bottom: 10px;
}

.field label {
display: block;
font-size: 0.8rem;
font-weight: 600;
margin-bottom: 4px;
color: var(--muted);
}

.field input,
.field textarea,
.field select {
width: 100%;
padding: 8px 9px;
border-radius: 6px;
border: 1px solid #cbd5e1;
font-size: 0.88rem;
font-family: inherit;
}

.field textarea {
min-height: 80px;
resize: vertical;
}

.btn-submit {
margin-top: 8px;
padding: 9px 16px;
border-radius: 999px;
border: none;
background: var(--primary);
color: var(--white);
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
}

/* Simple content */

.content {
max-width: var(--max-width);
margin: 0 auto;
padding: 40px 16px 60px;
}

/* Footer */

footer {
background: #03101f;
color: #d3e0f0;
padding: 20px 16px 18px;
font-size: 0.78rem;
}

.footer-inner {
max-width: var(--max-width);
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 10px;
align-items: center;
}

.footer-links {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
<img src="aeronova-logo.png" alt="AeroNova Aviation Logo" style="height:60px; width:auto; object-fit:contain;" />
.video-section {
width: 100%;
display: flex;
justify-content: center;
margin: 40px 0;
}

.video-section video {
width: 100%;
max-width: 900px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
/* Small Mandate Slider */
.mandate-slider {
max-width: 900px;
margin: 32px auto 40px;
text-align: center;
}

.mandate-card {
display: none;
background: #ffffff;
padding: 20px 22px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.mandate-card.active {
display: block;
}

.mandate-card h3 {
margin-bottom: 6px;
color: #002d5c;
font-size: 1rem;
}

.mandate-card p {
font-size: 0.92rem;
color: #333;
margin-bottom: 8px;
}

.mandate-card ul {
list-style: disc;
margin: 6px 0 0 22px;
text-align: left;
font-size: 0.9rem;
}

/* dots */
.dots {
margin-top: 10px;
}

.dots .dot {
height: 9px;
width: 9px;
margin: 0 4px;
display: inline-block;
border-radius: 50%;
background: #c2c2c2;
cursor: pointer;
}

.dots .dot.active {
background: #002d5c;
}
nav ul {
list-style: none !important;
margin: 0;
padding: 0;
}
nav ul li {
list-style-type: none !important;
}
/* ===========================
AeroNova – projects & services
=========================== */

.an-block {
padding: 60px 7%;
background-color: #050910; /* dark like hero/footer */
color: #ffffff;
}

.an-container {
max-width: 1100px;
margin: 0 auto;
}

.an-title {
font-size: 24px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 25px;
}

/* rows of 3 boxes */
.an-row {
display: flex;
flex-wrap: wrap;
gap: 24px;
}

/* each card */
.an-card {
background: #f7f2ea; /* cream card */
color: #111;
border-radius: 12px;
box-shadow: 0 14px 40px rgba(0,0,0,0.55);
padding: 22px 20px;
flex: 1 1 100%;
max-width: 340px;
}

.an-card-heading {
font-size: 15px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}

.an-card-tag {
font-size: 13px;
font-weight: 600;
color: #f94144; /* same red as your button */
margin-bottom: 10px;
}

.an-card-text {
font-size: 14px;
line-height: 1.6;
margin-bottom: 8px;
}

.an-card-list {
margin: 0;
padding-left: 18px;
font-size: 13px;
line-height: 1.6;
}

/* desktop: 3 in a row */
@media (min-width: 900px) {
.an-card {
flex: 1 1 calc(33.333% - 24px);
}
}

/* remove dot in front of Home, just in case */
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
}
/* ===========================
AeroNova – projects & services
=========================== */

.an-section-projects,
.an-section-services {
padding: 60px 7%;
background-color: #050910; /* dark like your hero/footer */
color: #ffffff;
}

.an-container {
max-width: 1100px;
margin: 0 auto;
}

.an-title {
font-size: 24px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 25px;
}

/* rows of 3 boxes */
.an-row {
display: flex;
flex-wrap: wrap;
gap: 24px;
}

/* each card (the cream boxes) */
.an-card {
background: #f7f2ea; /* cream box */
color: #111;
border-radius: 12px;
box-shadow: 0 14px 40px rgba(0,0,0,0.55);
padding: 22px 20px;
flex: 1 1 100%;
max-width: 340px;
}

.an-card-heading {
font-size: 15px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}

.an-card-tag {
font-size: 13px;
font-weight: 600;
color: #f94144; /* same red as your button */
margin-bottom: 10px;
}

.an-card-text {
font-size: 14px;
line-height: 1.6;
}

/* desktop: 3 boxes in one row */
@media (min-width: 900px) {
.an-card {
flex: 1 1 calc(33.333% - 24px);
}
}

/* make sure nav has no bullets */
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
}
/* ===========================
AeroNova – projects & services
=========================== */

.an-section-projects,
.an-section-services {
padding: 60px 7%;
background-color: #050910; /* dark like your hero/footer */
color: #ffffff;
}

.an-container {
max-width: 1100px;
margin: 0 auto;
}

.an-title {
font-size: 24px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 25px;
}

/* rows of 3 boxes */
.an-row {
display: flex;
flex-wrap: wrap;
gap: 24px;
}

/* each card (the cream boxes) */
.an-card {
background: #f7f2ea; /* cream box */
color: #111;
border-radius: 12px;
box-shadow: 0 14px 40px rgba(0,0,0,0.55);
padding: 22px 20px;
flex: 1 1 100%;
max-width: 340px;
}

.an-card-heading {
font-size: 15px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}

.an-card-tag {
font-size: 13px;
font-weight: 600;
color: #f94144; /* same red as your button */
margin-bottom: 10px;
}

.an-card-text {
font-size: 14px;
line-height: 1.6;
}

/* desktop: 3 boxes in one row */
@media (min-width: 900px) {
.an-card {
flex: 1 1 calc(33.333% - 24px);
}
}

/* make sure nav has no bullets */
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
}
/* Project Slide Cards */
.mandate-slider {
max-width: 950px;
margin: 40px auto;
text-align: left;
}

.mandate-card {
display: none;
background: #ffffff;
padding: 25px;
border-radius: 14px;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.mandate-card.active {
display: block;
}

.mandate-card h2 {
margin-bottom: 5px;
}

.mandate-card h3 {
color: #c62828;
margin-bottom: 15px;
}

.dots {
text-align: center;
margin-top: 12px;
}

.dot {
height: 12px;
width: 12px;
background: #bbb;
border-radius: 50%;
display: inline-block;
margin: 0 5px;
cursor: pointer;
}

.dot.active {
background: #003366;
}
/* Current Projects section */
.projects {
max-width: 1100px;
margin: 48px auto 40px;
padding: 0 24px;
}

.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
}

.project-card {
background: #fdf4ea; /* soft peach like your other cards */
border-radius: 16px;
padding: 20px 22px;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
text-transform: none; /* stop ALL CAPS */
}

.project-card * {
text-transform: none !important; /* override any global uppercase */
}

.project-card h3 {
margin-top: 0;
margin-bottom: 4px;
}

.project-funding {
font-weight: 600;
color: #c62828;
margin-bottom: 10px;
}

.project-card ul {
margin-left: 20px;
margin-bottom: 10px;
}

.project-card ul li {
margin-bottom: 4px;
}
/* PROJECT CARDS */
.project-grid {
display: grid;
grid-template-columns: 1fr;
gap: 25px;
margin: 40px 0;
}

.project-card {
background: #f4e9e2;
padding: 25px;
border-radius: 15px;
color: #212121;
line-height: 1.6;
box-shadow: 0px 4px 20px rgba(0,0,0,0.15);
}

.project-card h3 {
margin-top: 0;
text-transform: uppercase;
font-size: 20px;
}

.project-card ul {
margin-left: 20px;
}

/* Desktop layout: 3 boxes in one row */
@media (min-width: 900px) {
.project-grid {
grid-template-columns: repeat(3, 1fr);
}
}
/* --- PROJECT CARDS FIX --- */

.projects-section {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}

.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
margin-top: 20px;
}

.service-card {
background: #f7e8e2;
padding: 25px;
border-radius: 14px;
box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.service-tag {
font-size: 14px;
font-weight: bold;
color: #b03a2e;
text-transform: uppercase;
margin-bottom: 6px;
}

.service-list {
margin-top: 10px;
padding-left: 20px;
}

.service-list li {
margin-bottom: 6px;
}