:root {
  --red: #b22234;
  --blue: #002147;
  --white: #ffffff;
  --gray: #f4f4f4;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--gray);
  color: #222;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px;
  /* Remove background-color here */
}

/* Header */
.site-header {
  background: var(--blue);
  color: var(--white);
  padding: 15px 20px;
}

.site-header .container {
  background: transparent; /* Ensure nothing overrides it */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 120px;
  /*width:300px;*/
  display: block;
}

nav {
    min-width: 150px;
}

nav a {
  margin-left: 0px;
  text-decoration: none;
  color: var(--white);
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Intro */
.intro {
  text-align: center;
  padding: 100px 20px;
  background-image: url('../img/stock1.jpeg'); /* Or your custom image */
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay for contrast */
  z-index: 0;
}

.intro h2,
.intro p,
.intro .btn {
  position: relative;
  z-index: 1;
}

.btn {
  background: var(--red);
  color: var(--white);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background: #8b1d28;
}

/* Services */
.services {
  padding: 40px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--blue);
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--gray);
  padding: 20px;
  border-left: 5px solid var(--red);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Trust Section */
.trust-bar {
  background: var(--blue);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
}

.trust-bar h2 {
  margin-bottom: 20px;
}

.trust-bar ul {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
}

.trust-bar li {
  margin: 10px 0;
}

/* Contact */
.contact {
  padding: 40px 0;
}

.contact h2 {
  text-align: center;
  color: var(--red);
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}

form input,
form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background: var(--blue);
  color: var(--white);
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background: #1a3b6d;
}

/* Footer */
.site-footer {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}
