:root {
  --navy: #0a1f44;
  --navy-900: #071634;
  --gold: #ffd700;
  --white: #ffffff;
}
.logo {
  height: 36px;           /* adjust as needed */
  width: auto;            /* keeps proportions */
  display: block;
}

.brand img { height: 40px; display: block; }
  .menu { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; }
  .menu a { color: #fff; text-decoration: none; font-weight: 600; }
  .menu a:hover { text-decoration: underline; }
/* Base */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #0f172a;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%);
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.15);
}

/* Nav container */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* Brand */
.brand {
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  font-family: "Helvetica Neue";
  font-size: x-large;
}

/* Nav links */
.links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.pill {
  position: relative;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.pill::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.pill:hover::after,
.pill.is-active::after {
  transform: scaleX(1);
}

.pill.is-active {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Burger menu */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 7px 0;
  transition: 0.2s;
}

/* Responsive */
@media (max-width: 900px) {
  .burger {
    display: block;
  }

  .links {
    position: absolute;
    right: 20px;
    top: 64px;
    width: 220px;
    flex-direction: column;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px;
    display: none;
  }

  .links.open {
    display: flex;
  }
}

.our-services {
  text-align: center;
  padding: 60px 20px;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.section-title span {
  color: navy;
  font-weight: bold;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 2.5rem;
  color: navy;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
#our-process {
  background: #fff;
  padding: 60px 0;
}

.process-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 0 20px;
}

.process-left {
  flex: 1 1 400px;
}

.process-left img {
  width: 100%;
  border-radius: 8px;
}

.process-right {
  flex: 1 1 500px;
}

.process-right h2 {
  font-size: 2rem;
  color: #0a1f44; /* navy blue */
  margin-bottom: 8px;
}

.process-right .subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 24px;
}

.step {
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.2rem;
  color: #0a1f44;
}

.step h3 span {
  font-weight: bold;
}

.step p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 6px;
}

.highlight-box {
  background: #0a1f44;
  color: #ffd700;
  padding: 12px 16px;
  margin-top: 30px;
  border-radius: 6px;
  font-weight: 600;
  border: 2px solid #ffd700;
}

.footer {
  background: var(--navy); border-top: 1px solid var(--border);
  text-align: center; padding: 20px; color: gold;
}