.home-contact-btn {
  margin-top: 24px;   /* move button down */
  display: inline-block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* NORMAL NAV LINKS */
.nav a {
  text-decoration: none;
  font-weight: 500;
  color: #0b1f3a;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

/* HOVER EFFECT */
.nav a:hover {
  background-color: #e9f1fb;
  color: #003a8f;
}

/* ACTIVE PAGE */
.nav a.active {
  background-color: #003a8f;
  color: #ffffff;
}

/* REQUEST A QUOTE BUTTON */
.btn-quote {
  background-color: #d60000;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
}

/* HOVER FOR QUOTE */
.btn-quote:hover {
  background-color: #a80000;
  transform: translateY(-1px);
}

/* ===== HEADER ===== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 60px;      /* bigger logo */
  width: auto;
  background: none;
  display: block;
}

.logo span {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.nav a:hover {
  color: #c00000;   /* Atrax red */
}

.btn-quote {
  background: #c00000;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-quote:hover {
  background: #a00000;
}
:root {
  --atrax-red: #E30613;
  --atrax-dark: #000000;
  --atrax-gray: #6D6E71;
  --atrax-orange: #F5A623;
  --atrax-bg: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f5f7fa;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}
.navbar a {
  margin-left: 20px;
  text-decoration: none;
  color: #003b7a;
  font-weight: 500;
}
.navbar a.active {
  border-bottom: 2px solid #d00000;
}

.page-header {
  background: linear-gradient(to right, #111, #444);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
  height: 90px;        /* 🔼 increase this value */
  width: auto;
}

.logo img {
    width: 110px;
    height: 110px;
}

.logo span {
    font-size: 20px;
    font-weight: bold;
    color: #003366;
}

nav a {
  margin-left: 20px;
  font-size: 16px;
}

nav a.active {
    color: #003366;
    border-bottom: 2px solid #003366;
}

.btn-primary {
  background: #003b7a;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
    background: #003366;
    color: #fff;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 5px;
}

/* HERO */
.hero {
  background: linear-gradient(
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.6)
  );
  color: white;
  text-align: center;
  padding: 10px 20px;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 24px;
}


.hero a.btn {
  background: #003b7a; /* Atrax Blue */
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* SERVICES */
.services {
    padding: 60px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card img {
    width: 60px;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #003366;
}

/* CTA */
.cta {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    margin-bottom: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;   /* ⬅ forces vertical layout */
  gap: 15px;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  padding: 10px 20px;
}


.contact-form button:hover {
  background: #002a5c;
}
/* Page Layout */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* Header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #003b7a;
  font-weight: 500;
}

/* Quote Button */
.quote-btn {
  background: #d00000;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
}

/* Page Header */
.page-header {
  background: linear-gradient(to right, #222, #555);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

/* Quote Form */
.quote-form {
  max-width: 600px;
  margin: auto;
}

.quote-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.quote-form button {
  background: #d00000;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.quote-form button:hover {
  background: #a80000;
}

/* Home page CTA */
.cta-quote {
  display: inline-block;
  background: #d00000; /* Atrax red */
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.cta-quote:hover {
  background: #a80000;
  transform: translateY(-2px);
}
.testimonial-section {
  background: #f7f9fc;
  padding: 10px 10px 10px;
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-logo img {
  max-width: 180px;
  margin-bottom: 30px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-author {
  font-size: 1rem;
  color: #111;
}

.testimonial-author span {
  color: #555;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
}

