* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* SECTION (kept controlled) */
.section {
  padding:20px 0;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: #0b2a5b;
  color: #fff;
  z-index: 9999;
  transition: all 0.25s ease;
}

/* SHRINK */
.site-header.shrink .header-inner {
  padding: 8px 0;
}

.site-header.shrink .logo img {
  height: 35px;
}

/* HEADER INNER */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 50px;
  transition: 0.25s ease;
}

/* CONTACT */
.header-contact {
  display: flex;
  gap: 10px;
  align-items: center;
}

.phone {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.primary { background:#ff6a00; color:#fff; }
.secondary { background:#fff; color:#000; }
.small-btn { background:#ff6a00; color:#fff; }

/* NAV */
.main-menu {
  background: #071f4d;
  position: relative;
}

.menu-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 12px 0;
}

.menu-list a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* BURGER */
.burger-menu {
  display: none;
  flex-direction: column;
  width: 25px;
  height: 20px;
  justify-content: space-between;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 15px;
}

.burger-menu .line {
  height: 3px;
  background: gray;
}

/* ===================== */
/* HERO — REDUCED GAP FIX */
/* ===================== */

.hero {
  background: linear-gradient(#0b3d91, #071f4d);
  color: #fff;
  text-align: center;

  /* ?? REDUCED FROM 100px ? 70px TOP */
  padding: 70px 20px;
}

/* REMOVE DEFAULT HEADING MARGIN (THIS WAS CREATING EXTRA GAP) */
.hero h1 {
  margin-top: 0;
  margin-bottom: 10px;
}

.hero p {
  margin-top: 0;
  margin-bottom: 20px;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.hero img {
  width: 100%;
  max-width: 400px;   /* keeps it sensible on desktop */
  height: auto;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid #ddd;
  padding: 20px;
}

/* TESTIMONIALS */
.testimonials {
  background: #f5f7fa;
  text-align: center;
  padding: 20px 0;
}

/* CTA */
.cta {
  background: #ff6a00;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-bottom: 50px;
}

/* MOBILE CTA */
.mobile-cta {
  display: none;
}

/* TRUST BAR */
.trust-bar {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.trust-logos {
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-weight: bold;
  color: #0b2a5b;
}

/* LEAD TEXT */
.lead {
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 30px;
}

/* FEATURES */
.feature {
  text-align: center;
  background: #fff;
  border-radius: 8px;
}

/* TEAM */
.team-section {
  background: #f5f7fa;
  padding: 60px 0;
  text-align: center;
}

.team-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
}

.role {
  color: #ff6a00;
  font-weight: bold;
  margin-bottom: 10px;
}

/* INDUSTRIES */
.industries .card {
  text-align: center;
  font-weight: bold;
}

/* PREMIUM CTA */
.premium-cta {
  padding: 70px 0;
}

/* ===================== */
/* MOBILE */
/* ===================== */

@media (max-width: 768px) {

  .burger-menu {
    display: flex;
  }

  /* ?? HARD RESET MENU */
  .menu-list {
    position: absolute;
    top: 45px;
    right: 10px;
    width: 220px;

    background: #0b2a5b;

    display: none;
    flex-direction: column;

    margin: 0;
    padding: 0;

    list-style: none;

    /* IMPORTANT FIXES */
    gap: 0;              /* removes flex spacing */
    line-height: 1;      /* removes text vertical spacing */
    font-size: 0;        /* kills inline-block gaps */

    border-radius: 6px;
    overflow: hidden;
  }

  .menu-list.show {
    display: flex;
  }

  /* RESET LI COMPLETELY */
  .menu-list li {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
  }

  /* SINGLE SOURCE OF SPACING (ONLY HERE) */
  .menu-list a {
    display: block;
    padding: 14px 16px;

    margin: 0;
    line-height: 1;
    font-size: 14px; /* restore readable text */

    color: #fff;
    text-decoration: none;
  }

  .menu-list a:hover {
    background: rgba(255,255,255,0.08);
  }

  /* REMOVE BORDER CAUSING VISUAL “GAP FEEL” */
  .menu-list li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .menu-list li:last-child {
    border-bottom: none;
  }
  
    .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #ff6a00;
    text-align: center;
    padding: 15px;
  }

  .mobile-cta a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .hero img {
	width: 80%;
	max-width: 80vw;
	height: auto;
  }
}