/*
Theme Name: Barebone
Theme URI: https://example.com/barebone
Author: Your Name
Author URI: https://example.com
Description: A clean, responsive WordPress theme with a multilevel dropdown navigation.
Version: 1.0.0
Text Domain: barebone
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
  --color-white: rgb(255 255 255 / 1);
  --color-surface: rgb(255 255 255 / 1);
  --color-text: #5b6675;
  --color-text-muted: #90a3ba;
  --color-accent: #3b82c4;
  --color-accent-hover: rgb(47 114 176 / 1);
  --ink:#1f2a37;
  --color-accent-soft: rgb(232 242 255 / 1);
  --color-border: rgb(230 234 239 / 1);
  --color-border-soft: rgb(244 247 251 / 1);
  --color-topbar-bg: #0e2a47;
  --color-topbar-text: rgb(219 234 254 / 1);
  --color-topbar-link: rgb(205 216 230 / 1);
  --color-brand-muted: rgb(203 213 225 / 1);
  --color-footer-bg: rgb(226 232 240 / 1);
  --color-mobile-menu-bg: rgb(15 23 42 / 1);
  --color-mobile-menu-item-bg: rgb(255 255 255 / 0.06);
  --color-mobile-menu-item-bg-hover: rgb(255 255 255 / 0.12);
  --color-mobile-menu-item-bg-active: rgb(255 255 255 / 0.08);
  --color-mobile-menu-link: #cdd8e6;
  --color-mobile-menu-border: rgb(255 255 255 / 0.24);
  --color-mobile-menu-hover: rgb(255 255 255 / 0.14);
  --color-mobile-menu-hover-strong: rgb(255 255 255 / 0.2);
  --color-shadow-soft: rgb(15 23 42 / 0.04);
  --color-shadow-mobile: rgb(15 23 42 / 0.35);
  --color-shadow-dropdown: rgb(0 0 0 / 0.08);
  --color-shadow-menu: rgb(15 23 42 / 0.06);
  --bg: var(--color-white);
  --surface: var(--color-surface);
  --text: var(--color-text);
  --muted: var(--color-text-muted);
  --accent: var(--color-accent);
  --stroke: var(--color-border);
  --border: var(--color-border-soft);
  --blue1: var(--color-topbar-link);
  --blue2: var(--color-accent-soft);
  --line: #e6eaef;
  --font:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  --shadow: 0 18px 40px -18px rgba(14, 42, 71, .28);
}
.text-muted{ color: var(--muted) !important;}
.text-ink{color: var(--ink) !important;}
.text-white{color:#fff !important;}
.text-accent{color:var(--accent) !important;}
* {
  box-sizing: border-box;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  margin: 0;
  font-family:var(--font);
  -webkit-font-smoothing:antialiased;
  color: var(--text);
  background: var(--color-white);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: 300ms;
}

img {
  max-width: 100%;
  height: auto;
}

.fw-100{ font-weight: 100 !important;}
.fw-200{ font-weight: 200 !important;}
.fw-300{ font-weight: 300 !important;}
.fw-400{ font-weight: 400 !important;}
.fw-500{ font-weight: 500 !important;}
.fw-600{ font-weight: 600 !important;}
.fw-700{ font-weight: 700 !important;}
.fw-800{ font-weight: 800 !important;}
.fw-900{ font-weight: 900 !important;}

.top-bar {
  background: var(--color-topbar-bg);
  color: var(--color-topbar-text);
  font-size: 13px;
  padding: 6px 0;
}
.top-bar a{
  color: var(--blue1);
}

.top-contact {
  margin-right: 12px;
  display: inline-block;
}
svg.icon{
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: transparent;
  stroke: var(--blue1);
  stroke-width: 2px;
}

.site-header {
  background: var(--color-white);
  color: var(--text);
  padding: 1px 0;
  border-bottom: 1px solid var(--border);
}

.site-branding a {
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.site-branding p {
  margin: 3.2px 0 0;
  color: var(--color-brand-muted);
    font-size: 15.2px;
}

/* Logo sizing: ensure custom logo displays at 100px height */
.site-branding .custom-logo,
.site-branding .custom-logo-link img,
.site-branding svg.custom-logo {
  height: 71px;
  width: auto;
  max-width: none;
  display: inline-block;
}
@media (max-width: 400px) {
  .site-branding .custom-logo,
  .site-branding .custom-logo-link img,
  .site-branding svg.custom-logo {
    height: 50px;
  }
}
.request-quote {
  flex: 0 0 auto;
}
.request-quote a.phoneno {
  color: var(--color-topbar-bg);
  font-weight: 600;
}
.request-quote a.phoneno svg.icon {
  stroke: var(--color-topbar-bg);
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

a.pill {
    background: #163a5e;
    border: 1px solid #21476e;
    color: #dce7f3;
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    transition: .15s;
    display: inline-block;
}
a.pill:hover {
    background: var(--accent);
    border-color: var(--color-accent-hover);
    color: #fff;
}
@media (max-width: 768px) {
    .pills {
        justify-content: center;
    }
}

.link1{
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  transition: 300ms;
  font-size: 15px;
}
.link1:hover{
  color: #21476e;
}
.link1 svg{
  stroke: var(--accent);
  width: 16px;
  height: 16px;
}
.link1:hover svg{
  stroke: #21476e;
}
.btn1{
  background: var(--accent) !important;
  color: var(--color-white) !important;
  border-radius: 5px;
  padding: 10px 16px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
}
.btn1:hover{
  background: var(--color-accent-hover) !important;
}
@media (max-width: 400px) {
  .btn1{
    border-radius: 2px;
    padding: 7px 7px;
    font-size: 14px;
  }
}

.btn2{
  background: var(--color-white) !important;
  color: var(--color-topbar-bg) !important;
  border-radius: 5px;
  padding: 15px 26px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  font-weight: 700;
}
.btn2:hover{
  background: var(--color-accent-soft) !important;
}
.btn2 svg{
  stroke: var(--color-topbar-bg) !important;
}

.btn3{
  background: var(--color-white) !important;
  color: var(--ink) !important;
  font-size: 15px;
  border-radius: 8px;
  padding: 15px 30px;
  text-decoration: none;
  text-align: center;
  display: inline-block  !important;
  font-weight: 700;
  border: 1px solid #e6eaef;
}
.btn3:hover{
  background: var(--color-white) !important;
  color: var(--color-accent) !important;
  border: 1px solid var(--color-accent) !important;
}
.btn4{
  background: var(--accent) !important;
  color: #fff !important;
  font-size: 15px;
  border-radius: 8px;
  padding: 15px 30px;
  text-decoration: none;
  text-align: center;
  display: inline-block  !important;
  font-weight: 700;
  border: 1px solid var(--accent);
}
.btn4:hover{
  background: var(--color-accent-hover) !important;
  color: #fff !important;
  border: 1px solid var(--color-accent) !important;
}
.btn4 svg.icon{
  stroke: #fff !important;
}
.site-footer {
  padding: 40px 0 0 0;
  background: var(--color-topbar-bg);
  color: var(--muted);
  font-size: 15px;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 70px 0 20px 0;
  }
}
.site-footer img.footerlogo{
  width: auto;
  height: 71px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  justify-content: center; 
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-start; 
  }
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #16365a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a9bace;
  transition: .15s;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--color-white);
}

.footercontact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .footercontact {
    justify-content: flex-start;
  }
}

.footercontact .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: transparent;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footercontact span {
  line-height: 1;
}

.site-footer ul.menu{
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer ul.menu li{
  margin: 0 0 10px 0;
  padding: 0;
}
.site-footer ul.menu li a,
.footercontact a{
  color:var(--muted);
}
.site-footer ul.menu li a:hover,
.footercontact a:hover{
  color:var(--accent);
}
.copy{
  border-top: 1px solid #1d3a5a;
  background-color: var(--color-topbar-bg);
  padding: 20px 0;
  font-size: 13px;
  color:var(--muted);
}

@media (min-width: 768px) {
  .site-footer .row > .col-md-3:first-of-type {
    width: 31%;
    padding-right: 60px;
  }

  .site-footer .row > .col-md-3:not(:first-of-type) {
    width: 23%;
  }
}

.aboverfooter{
  background-color: var(--accent);
  padding: 60px 0;
  text-align: center;
}

/* Add white background, light gray border, and soft box shadow to the review cards */
html body .ti-widget.ti-goog .ti-review-item > .ti-inner {
    background-color: #ffffff !important;
    background: #ffffff !important;
    border: 1px solid #edf2f7 !important; /* Light gray border */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 7px 7px -1px rgba(0, 0, 0, 0.03) !important; 
    border-radius: 12px !important; 
}

/* Fix text contrast so it remains readable on the new white background */
html body .ti-widget.ti-goog .ti-name,
html body .ti-widget.ti-goog .ti-review-content,
html body .ti-widget.ti-goog .ti-date {
    color: #1a202c !important;
}

/* Add a safety padding cushion to the wrapper so the shadow doesn't clip into adjacent layout sections */
html body .ti-widget.ti-goog .ti-reviews-container-wrapper {
    padding-top: 15px !important;
    padding-bottom: 25px !important;
}

.pabs{
  position: absolute !important;
  width: 130px !important;
  padding: 7px 10px !important;
  background-color: var(--color-accent) !important;
  top:-15px !important;
  left:50% !important;
  margin-left: -65px !important;
}

.vi {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e1edf9;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .vi {
        margin-left: auto;
        margin-right: auto;
    }
}
.vi svg.icon{
  stroke: var(--accent);
}

.div1:hover{
  position: relative;
  transition: 300ms;
  transform: translateY(-6px);
}

.hero-badges {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 13.5px;
    font-weight: 600;
    color: #46566e;
}
.custom-subtitle{
  margin-bottom: 20px;
  max-width: 800px;
}
.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #46566e;
}
.hero-badges svg.icon {
    stroke: var(--accent) !important;
}
@media (max-width: 768px) {
    .hero-badges {
        justify-content: center;
        text-align: center;
    }
}

 .page-hero {
  background: var(--color-topbar-bg);
  color: var(--color-text-muted);
  padding: 64px 0;
}
.page-hero .breadcrumbs {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-start; /* Default left alignment on desktop */
}

.page-hero .breadcrumbs a {
  color: var(--color-text-muted);
}

.page-hero .breadcrumbs span {
  display: inline-block;
}

@media (max-width: 768px) {
  .page-hero .breadcrumbs {
    justify-content: center; /* Centers the flex items on mobile */
  }
}

/* Under banner */
/* top quote bar (service/location pages) */
.quote-bar {
  background: #fff;
  border: 1px solid #e6eaef;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: -38px;
  position: relative;
  z-index: 5;
}

.quote-bar .qb-items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.quote-bar .qb-item {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 15px;
  color: #33425a;
}

.quote-bar .qb-item .qbi {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eef4fb;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.quote-bar .qb-item svg.icon {
  stroke: var(--accent) !important;
}

.quote-bar .qb-item b {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.quote-bar .qb-item span {
  font-size: 12.5px;
  color: var(--muted);
}

.quote-bar .qb-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quote-bar.sticky-bar {
  position: sticky;
  top: 84px;
  margin-top: 0;
}

/* Mobile Breakpoint */
@media (max-width: 760px) {
  .quote-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-top: -26px;
  }

  .quote-bar .qb-items {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .quote-bar .qb-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .quote-bar.sticky-bar {
    position: static;
  }
}
/* END Under banner */

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #e1edf9;
    color: #2f72b0;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 30px;
}  
.pill svg.icon{
  stroke: var(--accent) !important;
}

.hl-ic {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: #1c3e63;    
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.hl-ic svg.icon{
    stroke: var(--accent)!important;
}

.num {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 19px;
    flex: none;
}
@media (max-width: 767px) {
    .num {
        margin: 0 auto 15px auto; 
    }
}

/**/
.location-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: #eef4fb;
    border: 1px solid #d8e6f5;
    border-radius: 999px;
    color: #2f72b0;
	font-size:14px;
    font-weight: 500;
}

.location-list li:hover {
    background: #2f72b0;
    color: #fff;
    border-color: #2f72b0;
}
.abs1{
	position:absolute !important;	
	left:0;
	right:0;
	margin-left: 25px;
	margin-right: 25px;
	bottom:25px !important;
}