:root{
  --primary:#00246b;
  --accent:#e3001f;
  --text:#0f172a;
  --muted:#64748b;
  --bg:#ffffff;
  --bg-soft:#f5f7fb;
  --radius:18px;
  --shadow:0 10px 28px rgba(2, 6, 23, .08);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{ color:var(--primary); }
a:hover{ color:var(--accent); }

/* Utilities */
.text-accent{ color:var(--accent) !important; }
.section{ padding:64px 0; }
.section-muted{ background:var(--bg-soft); }
.section-head{ max-width:760px; }

/* Top bar */
.topbar{
  background:linear-gradient(90deg, var(--primary), #001c55);
}
.topbar-link{
  color:#fff;
  text-decoration:none;
  opacity:.92;
}
.topbar-link:hover{ color:#fff; opacity:1; text-decoration:underline; }

/* Navbar */
.navbar{ background:var(--primary); }
.navbar .nav-link{
  color:rgba(255,255,255,.85);
  font-weight:500;
  padding: .8rem 1rem;
  border-radius: 999px;
  transition: all .18s ease;
}
.navbar .nav-link:hover{ color:#fff; background:rgba(255,255,255,.08); }
.navbar .nav-link.active{
  color:#fff;
  background:rgba(227,0,31,.18);
  box-shadow: inset 0 0 0 1px rgba(227,0,31,.35);
}

.brand-lockup{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name{ font-weight:700; letter-spacing:.5px; font-size: .98rem; }
.brand-sub{ font-size:.75rem; letter-spacing:1.5px; color:rgba(255,255,255,.75); }
@media (min-width: 992px){
  .brand-name{ font-size:1.05rem; }
}

/* Buttons */
.btn{ border-radius: 12px; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease; }
.btn:focus{ box-shadow: 0 0 0 .25rem rgba(227,0,31,.20) !important; }
.btn:hover{ transform: translateY(-1px); }

.btn-accent{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}
.btn-accent:hover{ background:#c7001b; border-color:#c7001b; color:#fff; box-shadow: var(--shadow); }

.btn-primary-soft{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
}
.btn-primary-soft:hover{ background:rgba(255,255,255,.20); border-color:rgba(255,255,255,.25); color:#fff; }

/* Hero */
.hero{
  padding:72px 0;
  background:
    linear-gradient(180deg, rgba(0,36,107,.88), rgba(0,27,82,.92)),
    url('../img/hero-bg.jpg') center/cover no-repeat,
    radial-gradient(900px 400px at 15% 10%, rgba(227,0,31,.14), transparent 55%),
    radial-gradient(900px 400px at 85% 5%, rgba(0,36,107,.18), transparent 55%),
    linear-gradient(180deg, var(--primary), #001b52);
  color:#fff;
}
.hero .lead{ color:rgba(255,255,255,.88); }
.eyebrow{ color:rgba(255,255,255,.85); font-weight:500; }
.hero-card{
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  overflow:hidden;
}
.hero-card .card-body{ background: rgba(255,255,255,.96); color:var(--text); }

.list-checked{ list-style:none; padding-left:0; }
.list-checked li{ position:relative; padding-left:28px; margin:10px 0; color: var(--text); }
.list-checked li::before{
  content:"\F26A";
  font-family:"bootstrap-icons";
  position:absolute;
  left:0; top:0;
  color:var(--accent);
}

.trust-strip{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  font-weight:500;
}
.trust-item i{ color:#fff; opacity:.9; }

/* Cards */
.feature-card, .service-card, .testimonial-card{
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid rgba(2,6,23,.08);
  box-shadow: 0 10px 28px rgba(2,6,23,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover, .service-card:hover, .testimonial-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(227,0,31,.22);
}

.icon-badge{
  width:44px;
  height:44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  margin-bottom: 14px;
  background: rgba(0,36,107,.08);
  color: var(--primary);
  border: 1px solid rgba(0,36,107,.12);
}
.icon-badge i{ font-size: 1.25rem; }

.why-list{
  margin:0;
  padding-left: 1rem;
}
.why-list li{ margin: .65rem 0; color: var(--text); }

/* Page hero */
.page-hero{
  padding:56px 0;
  background:
    linear-gradient(180deg, rgba(0,36,107,.88), rgba(0,27,82,.92)),
    url('../img/hero-bg.jpg') center/cover no-repeat,
    radial-gradient(900px 320px at 12% 10%, rgba(227,0,31,.12), transparent 55%),
    linear-gradient(180deg, var(--primary), #001b52);
  color:#fff;
}
.page-hero .lead{ color:rgba(255,255,255,.88); }

/* CTA banner */
.cta-banner{
  padding: 42px 0;
  background: linear-gradient(90deg, var(--accent), #a60015);
  color:#fff;
}
.text-white-75{ color: rgba(255,255,255,.82) !important; }

/* Footer */
.site-footer{
  background:#07112b;
  color:#fff;
  padding: 52px 0 24px;
}
.footer-list a{
  color: rgba(255,255,255,.85);
  text-decoration:none;
}
.footer-list a:hover{ color:#fff; text-decoration:underline; }
.footer-list li{ margin: 8px 0; }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,.10); }

/* Form */
.form-control, .form-select{
  border-radius: 14px;
  padding: .8rem .95rem;
}
.form-control:focus, .form-select:focus{
  border-color: rgba(227,0,31,.45);
  box-shadow: 0 0 0 .25rem rgba(227,0,31,.12);
}

.map-placeholder{
  border-radius: var(--radius);
  border: 1px dashed rgba(2,6,23,.22);
  background: #fff;
  min-height: 180px;
}

/* Loading */
.spin{ display:inline-block; animation: spin .9s linear infinite; }
@keyframes spin{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg);} }

/* Responsive tweaks */
@media (max-width: 575.98px){
  .section{ padding:52px 0; }
  .hero{ padding:56px 0; }
}


/* --- Card images: aligned & consistent (Bootstrap-friendly) --- */
.feature-card .card-img-top,
.service-card .card-img-top{
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-bottom: 1px solid rgba(2,6,23,.08);
}
@media (max-width: 575.98px){
  .feature-card .card-img-top,
  .service-card .card-img-top{
    height: 155px;
  }
}

.about-photo{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom: 1px solid rgba(2,6,23,.08);
}

.map-embed{
  border-radius: var(--radius);
  overflow: hidden;
}
.map-embed iframe{
  display:block;
  width:100%;
  height:260px;
  border:0;
}
