
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin: 0;
  color: #f6f7f8;
  background-color: #ffffff;
  line-height: 1.6;
}

/* ========== Layout ========== */
header,
footer {
  background-color: #0a3088;
  color: white;
  padding: 1.25rem 2rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

nav a {
  color: white;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}
nav .btn-primary {
  margin-left: 1.5rem;
}
.section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

/* ========== Hero ========== */
.hero {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 5rem 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #e95703;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== Buttons ========== */
.btn-primary {
  display: inline-block;
  background-color: #f97316;
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.5rem;
}

.btn-primary:hover {
  background-color: #ea580c;
}

/* ========== Cards ========== */
.services,
.testimonials,
.blog-snippet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: #113a94; /* slightly lighter than page bg */
  padding: 2rem;
  border-radius: 16px;

  /* THIS is the missing definition */
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  text-align: left;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card p {
  flex-grow: 1;
  border-color: #d1d5db;
  border: #d1d5db;
}

/* ========== Images (IMPORTANT FIX) ========== */
.logo {
  max-width: 160px;
  width: 100%;
  height: auto;
}

.stockphoto {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 2rem;
}

/* ========== Contact Form ========== */
.contact-form {
  max-width: 480px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f97316;
}

.contact-form button {
  align-self: flex-start;
}

/* ========== Footer ========== */
footer {
  text-align: center;
  margin-top: 4rem;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  margin: 0 0.75rem;
}

.footer-links a:hover {
  text-decoration: underline;
}
