body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: #000427;
  color: white;
  padding: 15px 0;
}

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

.call-btn {
  background: #0047ea;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.hero {
  padding: 70px 0;
  text-align: center;
  background: #f5f7fb;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-buttons {
  margin-top: 25px;
}

.primary-btn {
  background: #0047ea;
  color: white;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 6px;
  margin-right: 10px;
  display: inline-block;
}

.secondary-btn {
  padding: 12px 22px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}

.services {
  padding: 60px 0;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.grid div {
  background: #eef2ff;
  padding: 18px;
  border-radius: 8px;
  font-weight: 500;
}

.cta {
  background: #000427;
  color: white;
  padding: 55px 0;
  text-align: center;
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
  font-size: 0.9rem;
}
/* Sticky Mobile Call/Text/Chat Bar */
.mobile-bar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: none;
  background: rgba(0,4,39,0.98);
  padding: 10px;
  gap: 10px;
  z-index: 9999;
}
.mobile-bar a{
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
}
.mb-call{ background: #0047ea; }
.mb-text{ background: #1f7a3a; }
.mb-chat{ background: #2d2d2d; border: 1px solid rgba(255,255,255,0.25); }

@media (max-width: 820px){
  .mobile-bar{ display: flex; }
  body{ padding-bottom: 70px; }
}
.contact{
  padding: 50px 0;
  text-align: center;
}
.what{ padding: 60px 0 20px; text-align:center; }
.what p{ max-width: 900px; margin: 12px auto 0; line-height: 1.6; }
.two-col{ display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 24px; text-align:left; }
.card{ background:#fff; border:1px solid #e6e9f5; border-radius: 14px; padding: 18px; box-shadow: 0 10px 25px rgba(0,0,0,0.04); }
.card h4{ margin: 0 0 10px; }
.card ul{ margin: 0; padding-left: 18px; }
.card li{ margin: 8px 0; }

.why{ padding: 40px 0 10px; text-align:center; background:#fafbff; }
.why-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 20px; }
.why-item{ background:#fff; border:1px solid #e6e9f5; border-radius: 14px; padding: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.04); }
.why-item h4{ margin: 0 0 8px; }

.faq{ padding: 50px 0; text-align:left; }
.faq h3{ text-align:center; }
.faq details{ background:#f5f7fb; border-radius: 12px; padding: 14px 16px; margin: 10px 0; }
.faq summary{ cursor:pointer; font-weight: 700; }
.faq p{ margin: 10px 0 0; line-height: 1.6; }

.service-area{ padding: 18px 0; background:#0b0b0b; color:#fff; text-align:center; }
.service-area p{ margin:0; font-size: 0.95rem; opacity: 0.95; }

.grid a{
  display: block;
  background: #f5f7fb;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #000427;
  font-weight: 600;
  text-align: center;
  transition: 0.2s ease;
  border: 1px solid #e6e9f5;
}

.grid a:hover{
  background: #0047ea;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,71,234,0.25);
}
/* ===== NAV FIX (makes menu look like the homepage header) ===== */
header a, header a:visited{
  color:#fff;
  text-decoration:none;
}

header .nav a, header .nav a:visited{
  color: rgba(255,255,255,0.92);
  text-decoration:none;
  font-weight:700;
  padding: 8px 10px;
  border-radius: 10px;
  display:inline-block;
}

header .nav a:hover{
  background: rgba(255,255,255,0.10);
}

/* breadcrumbs links */
.breadcrumbs a, .breadcrumbs a:visited{
  color:#0047ea;
  text-decoration:none;
  font-weight:700;
}
.breadcrumbs a:hover{
  text-decoration: underline;
}

/* “Also Helpful” links */
.panel a, .panel a:visited{
  color:#0047ea;
  text-decoration:none;
  font-weight:700;
}
.panel a:hover{
  text-decoration: underline;
}

/* FORCE header links to look like a real menu (overrides default blue links) */
header a,
header a:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}

header .nav a,
header .nav a:visited {
  color: rgba(255,255,255,0.92) !important;
  text-decoration: none !important;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
  display: inline-block;
}

header .nav a:hover {
  background: rgba(255,255,255,0.10);
  text-decoration: none !important;
}
/* ===== SERVICE PAGE VISUAL POLISH ===== */

.page {
  padding: 40px 0 60px;
}

.page .container {
  max-width: 1100px;
}

/* Hero area */
.page-hero {
  padding: 50px 20px;
  text-align: center;
  background: #f5f7fb;
  border-radius: 18px;
  margin-bottom: 35px;
}

.page-hero h1 {
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.05rem;
  color: #444;
}

/* Main panels */
.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  margin-bottom: 22px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  border: 1px solid #e6e9f5;
}

.panel h3 {
  margin-top: 0;
}

/* Lists */
.klist li {
  margin: 10px 0;
  line-height: 1.5;
}

/* CTA row */
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Buttons feel stronger */
.primary-btn {
/* ===== Service tiles: match homepage + fix hover text ===== */
.grid a{
  text-decoration: none !important;
  display: block;
}

.grid a div{
  background: #eef2ff;
  padding: 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.03);
  color: #000427;
  text-align: center;
}

.grid a:hover div{
  background: #0047ea;
  color: #ffffff !important;
}

/* Secondary button text visibility everywhere */
.secondary-btn{
  color: #000427 !important;
}
.secondary-btn:hover{
  color: #000427 !important;
}
/* ===== SERVICE TILE HOVER FIX ===== */

.grid a{
  text-decoration: none !important;
  display: block;
}

.grid a div{
  background: #eef2ff;
  padding: 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.05);
  color: #000427;
  text-align: center;
  transition: 0.2s ease;
}

/* Hover state */
.grid a:hover div{
  background: #0047ea;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(0,71,234,0.35);
  transform: translateY(-2px);
}
/* ===== SECONDARY BUTTON CONTRAST FIX ===== */

.secondary-btn{
  background: #ffffff;
  color: #000427 !important;
  border: 1px solid #d6dbef;
}

.secondary-btn:hover{
  background: #ffffff;
  color: #000427 !important;
  opacity: 0.9;
}
/* ===== BUTTON TEXT FORCE FIX (prevents invisible text) ===== */
.primary-btn,
.primary-btn:visited,
.primary-btn:hover,
.primary-btn:active,
.call-btn,
.call-btn:visited,
.call-btn:hover,
.call-btn:active{
  color: #ffffff !important;
  text-decoration: none !important;
}

/* In case a global <a> rule is overriding button text */
.primary-btn * , .call-btn *{
  color: #ffffff !important;
}
/* ===== SERVICE TILE LOCK-IN (no underline, no weird link states) ===== */
.grid a,
.grid a:visited,
.grid a:hover,
.grid a:active{
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.grid a div{
  background: #eef2ff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 18px;
  font-weight: 800;
  color: #000427 !important;
  text-align: center;
  transition: 0.2s ease;
  min-height: 56px;

  /* makes the text perfectly centered */
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid a:hover div,
.grid a:focus-visible div,
.grid a:active div{
  background: #0047ea;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(0,71,234,0.35);
  transform: translateY(-2px);
}
