/*==============================================*/
/*          !!! GOOGLE FONT IMPORT !!!          */
/*==============================================*/
/* --------Montserrat--------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* ----------INTER------------ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* ----------Plus Jakarta Sans----------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
/* --------------------------*
font-family: "Assistant", sans-serif;
+--------------+--------------+
| FONT-WEIGHT  | Value        |
+--------------+--------------+
| thin         | 100          |
| ex-light     | 200          |
| light        | 300          |
| regular      | 400          |
| medium       | 500          |
| semi-bold    | 600          |
| bold         | 700          |
| ex-bold      | 800          |
| black        | 900          |
+--------------+--------------+
--------------------------- */
/* ============================================= */
/* !!!!        SITE GLOBAL STYLE CSS        !!!! */
/* ============================================= */
:root {
    --bs-primary: #1A1A1A;
    --bs-secondary: #008dd1;
    --bs-dark:#1127AE;
    --bs-text-blue: #14ACF2;
    --bs-cta-blue: #024c70;
	--bs-link-color: #14ACF2;
    

    --bs-primary-rgb: 26, 26, 26;
    --bs-secondary-rgb: 0, 141, 209;
    --bs-dark-rgb: 17, 39, 174;
    --bs-text-blue-rgb: 20, 172, 242;
    --bs-cta-blue: 2, 76, 112;
	--bs-link-color-rgb: 20, 172, 242;

    --bs-font-sans-serif: 'Inter',-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-body-font-family: "Inter", sans-serif;
    --bs-body-color: var(--bs-white);
    --bs-body-color-rgb: 255, 255, 255;
    --bs-body-bg: var(--bs-primary);
    --bs-body-bg-rgb: 26, 26, 26;
    --bs-heading-color: var(--bs-white);

    --bs-body-font-size: 18px;
    --bs-body-line-height: 28px;
    --bs-base-transition: 0.4s ease-in-out;
}
/* !!! Allow percentage-based heights in the application !!! */
html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body {
  position: relative;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
.main_wrapper {
    width: 100%;
    overflow: hidden;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}
/* !!! Improve media defaults !!! */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/* !!! Remove built-in form typography styles !!! */
input,
button,
textarea,
select {
  font: inherit;
}
textarea {
  resize: none;
}
/* !!! Set core root defaults !!! */
html:focus-within {
  scroll-behavior: smooth;
}
/* !!! A elements that don't have a class get default styles !!! */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
a,
.btn,
button {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
:focus,
:active,
.active {
  outline: 0 none;
}
a,
a:hover,
a:focus,
a:active,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
select,
select:hover,
select:focus,
textarea,
textarea:hover,
textarea:focus,
.btn,
.btn:hover,
.btn:focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  transition: 0.4s ease-in-out;
}
.form-control:focus,
.form-select:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="checkbox"]:focus,
[type="password"]:focus,
[type="file"]:focus,
[type="radio"]:focus,
[type="submit"]:focus,
[type="date"]:focus,
[type="time"]:focus,
[type="tel"]:focus,
[type="search"]:focus,
[type="button"]:focus,
[type="number"]:focus,
[type="reset"]:focus,
textarea:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
button::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner {
  border: none;
  padding: 0;
}
select,
select:hover,
select:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="search" i]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  /* display: none; */
}
/* ============================================= */
/* !!!!          All MINIFY CSS             !!!! */
/* ============================================= */
a:hover,
a:focus,
button:hover,
button:focus,
svg,
svg path,
svg rect {
  -webkit-transition: var(--bs-base-transition);
  -moz-transition: var(--bs-base-transition);
  -ms-transition: var(--bs-base-transition);
  -o-transition: var(--bs-base-transition);
  transition: var(--bs-base-transition);
}
/* ============================================= */
/* !!!!             CONTAINER               !!!! */
/* ============================================= */
.row:not(.g-0),
.container {
  --bs-gutter-x: 24px;
}
@media(max-width: 575px){
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    --bs-gutter-x: 48px;
  }
}
@media (min-width: 576px) {
  .row:not(.g-0),
  .container {
    --bs-gutter-x: 24px;
  }
}
@media (min-width: 1400px) {
    .container{
        max-width: 1280px;
    }
}
/* ============================================= */
/* !!!!         SITE TYPOGRAPHY CSS         !!!! */
/* ============================================= */
p {
    margin: 0 0 14px;
}
p:last-child {
    margin-bottom: 0;
}
ul li a {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6  {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 14px;
}
h1, .h1 {
    font-size: 48px;
    line-height: 58px;
}
h2, .h2 {
    font-size: 40px;
    line-height: 122%;
}
h3, .h3 {
    font-size: 40px;
}
h4, .h4 {
    font-size: 30px;
} 
h5, .h5 {
    font-size: 24px;

}
h6, .h6 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}
.special-text {
    color: var( --bs-text-blue);
}
@media(max-width: 1024px){
  h1, .h1 {
      font-size: 46px;
      line-height: 50px;
  }
}
@media(max-width: 992px){
  h1, .h1 {
    font-size: 32px;
    line-height: 38px;
  }
  h2, .h2{
    font-size: 30px;
    line-height: 122%;
  }
}
/* ============================================*/
/*                   SPACING                   */
/* ============================================*/
.padding-80{
  padding-top: 80px;
  padding-bottom: 80px;
}
@media(max-width: 768px){
  .padding-80{
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.margin-80{
  padding-top: 80px;
  padding-bottom: 80px;
}
@media(max-width: 768px){
  .margin-80{
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/* ============================================================= */
/* !!! A elements that don't have a class get default styles !!! */
/* ============================================================= */
a:not([class]) {
    text-decoration-skip-ink: auto;
}
a, .btn, button {
    cursor: pointer;
    font-family: "Inter", sans-serif;
}
:focus, :active, .active {
    outline: 0 none;
}
a, a:hover, a:focus, a:active, button, button:hover, button:focus, input, input:hover, input:focus, select, select:hover, select:focus, textarea, textarea:hover, textarea:focus, .btn, .btn:hover, .btn:focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    text-decoration: none;
    -webkit-text-decoration-skip: objects;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    transition: 0.4s ease-in-out;
}
.form-control:focus, .form-select:focus, [type="text"]:focus, [type="email"]:focus, [type="checkbox"]:focus, [type="password"]:focus, [type="file"]:focus, [type="radio"]:focus, [type="submit"]:focus, [type="date"]:focus, [type="time"]:focus, [type="tel"]:focus, [type="search"]:focus, [type="button"]:focus, [type="number"]:focus, [type="reset"]:focus, textarea:focus, select:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
/* ============================================= */
/* !!!!          ALL BUTTON CSS             !!!! */
/* ============================================= */
.btn {
    --bs-btn-padding-x: 24px;
    --bs-btn-padding-y: 14px;
    --bs-btn-font-family: "Inter", sans-serif;
    --bs-btn-font-size: 18px;
    --bs-btn-line-height: 28px;
    --bs-btn-border-radius: 50px;
    --bs-btn-font-weight: 500;
    --bs-btn-box-shadow: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
@media(max-width: 1200px){
    .btn{
      --bs-btn-padding-x: 20px;
    }
}
@media(max-width: 991px){
    .btn{
      --bs-btn-padding-x: 18px;
      --bs-btn-font-size: 16px;
      --bs-btn-line-height: 20px;
    }
    .btn img{
      width: 14px;
    }
}
@media(max-width: 768px){
    .btn{
      /* --bs-btn-padding-x: 12px; */
      /* --bs-btn-font-size: 13.5px; */
      --bs-btn-line-height: 18px;
    }
}
@media(max-width: 575px){
    .btn img{
      width: 12px;
    }
}
.btn-primary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var( --bs-dark);
    --bs-btn-hover-border-color: var( --bs-dark);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var( --bs-dark);
    --bs-btn-active-border-color: var( --bs-dark);
    --bs-btn-disabled-color: var(--bs-white);
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}
.btn-outline-primary{
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var( --bs-dark);
    --bs-btn-hover-border-color: var( --bs-dark);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var( --bs-dark);
    --bs-btn-active-border-color: var( --bs-dark);
    --bs-btn-disabled-color: var(--bs-white);
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}
.btn-light {
    --bs-btn-color: var(--bs-cta-blue);
    --bs-btn-bg: var(--bs-white);
    --bs-btn-border-color: var(--bs-white);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-cta-blue);
    --bs-btn-hover-border-color: var(--bs-white);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-cta-blue);
    --bs-btn-active-border-color: var(--bs-white);
    --bs-btn-disabled-color: var(--bs-white);
    --bs-btn-disabled-bg: var(--bs-white);
    --bs-btn-disabled-border-color: var(--bs-white);
}
/* ============================================= */
/* !!!!       FORM INPUT PLACEHOLDER        !!!! */
/* ============================================= */
label, .form-label {
    color: var(--bs-greenblack);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 8px;
}
.form-control {
    font-family: "Plus Jakarta Sans", sans-serif;
    border-color: var(--bs-claygray);
    padding: 12px 16px;
    border-radius: 0;
    color: var(--bs-black);
    border: 1px solid var(--bs-claygray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}
textarea.form-control {
    max-height: 48px;
    border-radius: 0;
    resize: none;
}
.form-control:focus {
    border-color: var(--bs-darkgreen);
}
.form-control::-webkit-input-placeholder {color: var(--bs-lightgreenishgray);-webkit-transition: var(--bs-base-transition);transition: var(--bs-base-transition);}
.form-control::-moz-placeholder {color: var(--bs-lightgreenishgray);-webkit-transition: var(--bs-base-transition);transition: var(--bs-base-transition);}
.form-control:-ms-input-placeholder {color: var(--bs-lightgreenishgray);-webkit-transition: var(--bs-base-transition);transition: var(--bs-base-transition);}
.form-control::-ms-input-placeholder {color: var(--bs-lightgreenishgray);-webkit-transition: var(--bs-base-transition);transition: var(--bs-base-transition);}
.form-control:-moz-placeholder {color: var(--bs-lightgreenishgray);-webkit-transition: var(--bs-base-transition);transition: var(--bs-base-transition);}
/* !! field focus !! */
.form-control:focus::-webkit-input-placeholder {color: var(--transparent);}
.form-control:focus::-moz-placeholder {color: var(--transparent);}
.form-control:focus:-ms-input-placeholder {color: var(--transparent);}
.form-control:focus::-ms-input-placeholder {color: var(--transparent);}
.form-control:focus:-moz-placeholder {color: var(--transparent);}
/* ============================================= */
/* !!!!               Header                !!!! */
/* ============================================= */
nav.navbar{
    padding-top: 48px;
    padding-bottom: 18px;
    /* position: absolute; */
    width: 100%;
}
@media(max-width: 1200px){
  nav.navbar{
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.navbar-brand{
      width: 140px;
  }
@media(max-width: 1439px){
  .navbar-brand{
      width: 140px;
  }
}
@media(min-width: 1439px){
  .navbar-brand{
      width: 174px;
  }
}
.header-cta{
    gap: 24px;
}
.call-cta{
    column-gap: 8px;
}
.call-cta img{
    width: 24;
    padding: 8px;
    border-radius: 50%;
    background-color: var(--bs-white);
    max-width: 40px;
    height: 40px;
}
.small-text{
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 100%;
}
.medium-text{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px
}
.inspection-cta{
    position: relative;
}
.inspection-cta .btn-primary{
    font-size: 14px;
    line-height: 14px;
    position: relative;
}
@media(max-width: 991px){
	.inspection-cta-top {
		color: var(--bs-primary);
		margin: 5px 0 5px 45px;
	}
  .inspection-cta .btn-primary{
    line-height: 20px;
  }
}
@media(min-width: 1200px){
    .inspection-cta-top{
        display: flex !important;
        font-size: 14px;
        position: absolute;
        top: -25px;
        right: 25%;
    }
}
.navbar-expand-lg .navbar-nav .nav-link{
     padding: 10px 15px;
     font-family: "Montserrat", sans-serif;
     font-size: 16px;
}
.collapse.navbar-collapse{
    column-gap: 30px;
}
.dropdown-toggle::after{
    display: none !important;
}
.nav-link.dropdown-toggle{
    column-gap: 4px;
}
.offcanvas-body{
  column-gap: 30px;
}
.offcanvas-header{
  padding: 20px 12px;
}
.offcanvas.offcanvas-start{
  border-right: none;
}
@media(max-width: 1200px){
    .navbar-brand{
        width: 130px;
    }
    .offcanvas-body{
      column-gap: 10px;
    }
    .header-cta{
        gap: 10px;
    }
    .inspection-cta .btn-primary{
        padding-right: 10px;
        padding-left: 10px;
    }
    .navbar-expand-lg .navbar-nav .nav-link{
     padding: 10px 8px;
    }
}
/* @media(max-width: 991px){
  .navbar-brand{
      width: 170px;
  }
} */
.call-cta-btn{
    font-size: 14px;
    background-color: var(--bs-white);
    padding: 10px 10px;
    border-radius: 50px;
    column-gap: 4px;
}
.navbar-toggler-icon{
    background-image: url(../images/toggle-icon.svg);
    width: 1.4rem;
    height: 1.4rem;
}
.navbar-toggler-icon.active {
  background-image: url(../images/close-icon.png);
}

ul.dropdown-menu{
    background-color: var(--bs-white);
    border-radius: 10px;
    border-top: 3px solid var(--bs-secondary);
}
.dropdown-menu {
  background-color: #fff; 
  min-width: 200px;       
  padding: 0.5rem 0;      
  border-radius: 0.5rem;  
  overflow: hidden;       
}
@media(min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0px; 
  }
}
.dropdown-item{
  color: var(--bs-primary);
  font-size: 16px;
  padding: 10px 20px;
  font-weight: 500;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-secondary);
    background-color: var(--bs-dropdown-link-hover-bg);
}
 a.call-cta-btn {
    color: var(--bs-secondary);
  } 
@media(min-width: 992px) and (max-width: 1100px) {
  .inspection-cta .btn-primary{
        padding-right: 10px;
        padding-left: 10px;
    }
    .navbar-expand-lg .navbar-nav .nav-link{
     padding: 10px 8px;
    }
    .call-cta-btn{
        padding: 10px 10px;
    }
    .navbar-brand{
        width: 125px;
    }
}
.nav-link a{
  font-size: 16px;
}
.nav-menu-item{
  color: var(--bs-white);
}
.nav-link:focus, .nav-link:hover{
  color: var(--bs-white);
}
@media(max-width: 991px){
  .navbar-collapse{
    background-color: #FFF;
    padding: 30px 20px
  }
  .nav-menu-item{
    color: var(--bs-primary);
  }
  .nav-link img{
    /* background-color: var(--bs-secondary); */
    width: 16px;
  }
  .nav-link{
    justify-content: space-between;
  }
  .inspection-cta .btn,
  .call-cta-btn {
    max-width: 230px;
    border: 1px solid var(--bs-secondary);
    justify-content: center;
  }
  a.call-cta-btn {
    color: var(--bs-secondary);
  } 
  .dropdown-item{
    text-wrap: auto;
  }
}
button.navbar-toggler {
    border: 1px solid var(--bs-secondary);
    border-radius: 4px;
    padding: 6px;
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100vw;
    z-index: 9999999;
    min-height: calc(100vh - 100px);
  }
  .nav-link:focus, .nav-link:hover {
    color: var(--bs-secondary);
  } 
}
/* ============================================= */
/* !!!!             Hero Banner             !!!! */
/* ============================================= */
.hero-banner{
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}
.hero-banner:not(.subpage-banner) h1{
  font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 0 0 0px;
}
.banner-bg-pipeline{
  position: absolute;
  right: 0;
  max-width: 506px;
  bottom: 0px;
  z-index: -1;
}
.hero-banner .btn.btn-primary{
  max-width: 287px;
  margin-top: 26px;
}
.hero-banner .btn.btn-outline-primary{
  max-width: 287px;
  margin-top: 26px;
}
@media(min-width: 992px) and (max-width: 1400px){
  .hero-banner{
    padding-top: 12px;
  }
  .hero-banner .banner-text-content{
    justify-content: center !important;
  }
  .hero-banner img{
    max-height: 470px;
  }
  .hero-banner .btn.btn-primary {
      margin-top: 12px;
  }
  .hero-banner .btn.btn-outline-primary{
    margin-top: 12px;
  }
}
@media(min-width: 992px) and (max-width: 1360px){
  .hero-banner .banner-image-content{
    justify-content: center !important;
  }
  .hero-banner img{
    max-height: 390px;
  }
}
@media(max-width: 992px){
  .hero-banner img{
    max-height: 400px;
  }
}
@media(max-width: 425px){
  .page-template-service-main-template .hero-banner .btn.btn-primary,
  .page-template-service-main-template .hero-banner .btn.btn-outline-primary
  {
    width: 100%;
  }
}
.page-template-service-main-template .hero-banner .btn.btn-primary,
.page-template-service-main-template .hero-banner .btn.btn-outline-primary
{
  margin-top: 14px;
}
.hero_btn_wrapper{
  column-gap: 18px;
}
@media(max-width: 820px){
  .hero-banner .btn.btn-outline-primary,
  .hero-banner .btn.btn-primary{
    margin-top: 14px;
  }
  .hero_btn_wrapper{
    column-gap: 10px;
  }
}
@media(max-width: 820px){
  .hero-banner h2,
  .subpage-banner h1
  {
    max-width: 400px
  }
}

@media(max-width: 374px){
  .hero_btn_wrapper{
    flex-direction: column;
  }
}
/* ============================================= */
/* !!!!            google review            !!!! */
/* ============================================= */
.google-review{
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
}
@media(max-width: 768px){
  .google-review{
    padding-top: 24px;
    padding-bottom: 70px;
    position: relative;
  }
}
.google-review-bg{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 181px;
  z-index: -1;
  padding: 0;
}
.google-badge{
  padding: 32px;
  background-color: #333333;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 400px;
}
.google-badge .btn{
  font-weight: 500;
  margin-top: 32px;
  max-width: 336px;
}
small{
  font-size: 17px;
  font-weight: 300;
  font-family:  "Inter", sans-serif;
  margin-bottom: 4px;
}
.review-section{
  gap: 8px;
  font-size: 14px;
  font-family:  "Inter", sans-serif;
  margin-top: 4px;
  font-weight: 500;
  flex-wrap: wrap;
}
.review-box{
  padding: 0px 16px;
  gap: 24px;
}
.review-box p{
  font-size: 16px;
  line-height: 140%;
}
.reviewer-name{
  font-size: 17px;
}
@media(max-width: 575px){
  .google-badge{
    padding: 18px;
  }
}
.star-container{
  max-height: 17px;
   margin-top: 5px;
}
@media(max-width: 374px){
  .review-section{
    gap: 0px;
    font-weight: 400;
    font-size: 14px;
  }
  .star-container{
    width: 46%;
  }

}
.page-id-211 .google-review{
  padding-bottom: 88px; 
  padding-top: 20px;
}
.page-id-429 .google-review{
  padding-top: 20px; 
  padding-bottom: 88px;
}
.page-id-570 .google-review,
.page-id-580 .google-review,
.page-id-590 .google-review{
  padding-top: 88px; 
  padding-bottom: 88px; 
}
.page-id-570 .google-review,
.page-id-580 .google-review{
  padding-bottom: 44px; 
}
.page-id-464 .google-review{
  padding-bottom: 44px;
  padding-top: 88px;
}
@media(max-width: 768px){
  .page-id-429 .google-review{
    padding-bottom: 70px;
  }
  .page-id-464 .google-review,
  .page-id-570 .google-review,
  .page-id-580 .google-review,
  .page-id-590 .google-review{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .page-id-464 .google-review,
  .page-id-570 .google-review,
  .page-id-580 .google-review{
    padding-bottom: 35px;
  }
  .page-id-211 .google-review {
    padding-bottom: 70px;
}
}
@media (max-width: 767px) {
    .ti-widget.ti-goog .ti-controls-line {
        display: block !important;
    }
}
@media (min-width: 768px) {
    .ti-widget.ti-goog .ti-controls {
        display: block !important;
    }
}
@media(max-width: 992px){
  .google-review .ti-widget.ti-goog .ti-controls .ti-next {
      right: -10px;
  }
  .google-review .ti-widget.ti-goog .ti-controls .ti-prev {
    left: -15px;  
  }
}
.google-review .ti-inner {
  display: flex !important;
  flex-direction: column;
}
.google-review .ti-widget.ti-goog .ti-widget-container .ti-name{
  font-size: 17px;
}
.ti-platform-icon{
  display: none !important;
}

.google-review .ti-review-text-container {
  order: 1;
}
.google-review .ti-read-more{
  order: 2;
}
.google-review .ti-widget.ti-goog .ti-profile-img img{
  margin-top: 20px !important;
}
.google-review .ti-stars {
  order: 4;
  position: absolute;
  bottom: 10px;
  left: 74px;
}
.google-review .ti-review-header {
  order: 3;
}
/* ------free-cta--- */
.free-cta{
  background-color: #024C70;
  padding-top: 64px;
  padding-bottom: 64px;
  /* font-family: "Plus Jakarta Sans", sans-serif; */
}

/* .free-cta h2,
.free-cta p,
.free-cta a{
  font-family: "Plus Jakarta Sans", sans-serif;
} */
.terms-condition{
  text-decoration: underline;
  color: var(--bs-light);
  font-size: 14px;
}
.custom-form .form-control-custom,
.custom-form .form-select {
  border: 1px solid white;
  border-radius: 50px;
  background-color: transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 10px 28px;
}
.custom-form select option {
  color: var(--bs-primary);
}
@media (max-width: 991px){
  .free-cta .btn{
    padding: 14px 20px;
  }
}
.free-cta .form-field{
  position: relative;
}
.free-cta .form-label{
  position: absolute;
  top: -7px;
  left: 40px;
  background-color: #024C70;
  padding: 0px 4px;
  font-size: 12px;
  font-weight: 500;
  z-index: 1;
}
.free-cta .btn.btn-submit{
  background-color: var(--bs-light);
  border: 1px solid var(--bs-light);
  color: #024C70;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 24px;
}
.cta-form .submit-col {
  position: relative;
}
/* .wpcf7-spinner {
    position: absolute;
    top: 20%;
   
} */
.cta-form{
  padding-top: 48px;
}
@media(max-width: 1100px) {
  .form-field{
    padding: 0px 12px;
  }
}
@media(max-width: 992px){
    .cta-form{
    flex-direction: column;
  }
  .free-cta p{
    font-size: 17px;
    line-height: 28px;
  }
  .free-cta a{
    font-size: 13.5px;
  }
}
.form-select.form-control-custom {
  appearance: none;
  background: url('../images/drop-down-icon.svg') no-repeat right 0.75rem center/1.5em;
  padding-right: 2.5em;
  background-size: 16px;
}
/* -overview----- */
.partners-logo{
  gap: 88px;
}
.partners-section{
  gap: 50px;
}
@media(mx-width: 767px){
  .partners-section{
    gap: 32px;
  }
}
.overview-list li{
  list-style: none;
  display: flex;
  font-family: "Montserrat", sans-serif;
  gap: 32px;
  padding: 24px 0px;
  align-items: center;
  font-size: 24px;
  padding-right: 40px;
  text-transform: capitalize;
  /* line-height: 120%; */
}
.overview-list li img{
  width: 48px;
  height: 48px;
}
.overview-content{
  margin-top: 64px;
}
@media(min-width: 1439px){
  .row.overview-content {
   --bs-gutter-x: 64px;
  }
}
@media(max-width: 768px){
  .overview-content{
    margin-top: 32px;
  }
}
.video-content .video-thumbnail,
.video-content video{
  border-radius: 32px;
}
@media(max-width: 575px){
  .video-content .video-thumbnail,
  .video-content video{
    border-radius: 10px;
  }
}
.video-thumbnail-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.video-thumbnail,
.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: top; 
  display: block;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}
@media(max-width: 1439px) {
  .overview-list li{
    padding: 16px 0px;
  }
}
@media(max-width: 1200px){
  .play-icon{
    width: 50px;
  }
  .overview-list li img{
    width: 40px;
    height: 40px;
  }
  .overview-list li{
    padding-right: 0px;
    font-family: "Montserrat", sans-serif;
    gap: 18px;
    font-size: 20px;
  }
}
@media(max-width: 992px) {
  .partners-logo{
     gap: 44px;
  }
  .partners-section {
    gap: 32px;
  }
  /* .overview-list li{
    padding-right: 0px;
    font-family: "Montserrat", sans-serif;
    gap: 18px;
    font-size: 20px;
  }
  .overview-list li img{
    width: 32px;
    height: 32px;
  } */
  .play-icon{
    width: 40px;
  }
}
@media(max-width: 767px){
  .partners-logo{
    flex-direction: column;
  }
}
.video-player {
  width: 100%;
  height: auto;
  display: block;
}
@media(max-width: 768px){
  .page-id-89 .overview-section{
    padding-bottom: 35px;
  }
  .page-id-89 .our-service{
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .home_flexible_section{
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

/* ----our-service---- */
.our-service{
  position: relative;
}
.our-service-wrapper{
  gap: 50px;
}
@media(max-width: 767px){
  .our-service-wrapper{
    gap: 32px;
  }
}

.our-service-pipeline1{
  position: absolute;
  top: -25%;
  right: 0;
  z-index: -1;
}
.our-service-pipeline2{
  position: absolute;
  bottom: 0%;
  left: 0;
  z-index: -1;
}
.service-card{
  /* gap: 24px; */
  width: 100%;
}
.card-item{
  background: #2E2E2E;
  padding: 24px;
  border-radius: 16px;
  flex: 1;
  gap: 32px;
  transition: background-color 0.3s ease-in;
}
.card-item h5{
  color: var(--bs-text-blue);
}
.card-item img{
  height: 56px;
}
.card-item:hover{
  background: var(--bs-secondary);
}
.card-item:hover h5{
 color: #FFF;
}
.card-item.card-active{
    background: var(--bs-secondary);
    width: 396px;
    flex: 1.5; 
}
@media (max-width: 991.98px) {
  .service-card {
    display: flex;
    flex-wrap: wrap;
    /* gap: 16px; */
  }

  .card-item,
  .card-item.card-active {
    flex: 0 0 calc(50% - 12px); 
    width: auto; 
  }
}
@media(max-width: 575px) {
  .card-item,
  .card-item.card-active {
    flex: 0 0 100%; 
    width: auto;
  }
}
/* ---faq------- */
.faq{
  position: relative;
}
.faq-pipeline{
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  transform: translateY(80%);
  z-index: -1;
}
.faq .accordion{
  max-width: 886px;
  width: 100%;
  margin-top: 50px;
} 
@media(max-width: 768px){
  .faq .accordion{
    margin-top: 30px;
  }
}
.accordion-item{
  border: none;
}
.accordion-body{
  padding: 32px;
}
.accordion-button{
  font-size: 24px;
  padding: 32px;
  font-family: "Montserrat", sans-serif;
}
.accordion-button:not(.collapsed){
  padding-bottom: 0px;
  font-size: 22px;
}
.accordion-button:not(.collapsed),
.accordion-body{
  background-color: #102F3D;
  color: var(--bs-light);
  box-shadow: none;
}
.accordion-button{
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
}
.accordion-body{
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding-top: 16px;
}
.accordion{
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8L8 12L12 8' stroke='white' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8L8 12L12 8' stroke='white' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media(max-width: 767px){
  .accordion-body {
    padding: 24px;
  }
  .accordion-button{
    padding: 24px;
  }
  .accordion-button{
    font-size: 20px;
  }
}
.accordion-item:first-of-type>.accordion-header .accordion-button{
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-size: 20px;
}
.faq .accordion-body{
    font-size: 16px;
    line-height: 20px;
    /* margin-bottom: 16px; */
}
.faq .accordion-body p:not(:last-child){
    margin-bottom: 20px;
}
.faq .accordion-body ul li {
    margin-bottom: 8px;
}
.faq .accordion-body ul li:last-child {
    margin-bottom: 0px;
}
.faq button.accordion-button.collapsed{
  font-size: 20px;
  line-height: 32px;
}
@media(max-width: 768px){
  .accordion-button::after{
    margin-top: 2px;
    align-self: flex-start;
  }
  .accordion-button:not(.collapsed)::after{
    margin-top: 6px;
  }
}
.faq a{
  color: #fff;
  text-decoration: underline; 
}
.faq{
  padding-bottom: 80px;
  padding-top: 80px;
}
.page-template-service .faq{
  padding-bottom: 88px;
  padding-top: 88px;
}
@media(max-width: 768px){
  .faq{
    padding-bottom: 70px;
    padding-top: 70px;
  }
  .page-template-service .faq{
    padding-bottom: 70px;
    padding-top: 70px;
  }
}
@media(max-width: 575px){
  .faq button.accordion-button.collapsed{
    font-size: 18px;
    line-height: 24px;
  }
  .faq .accordion-body{
    font-size: 16px;
    line-height: 26px;
    padding-top: 16px;
  }
  .accordion-button:not(.collapsed),
  .accordion-item:first-of-type>.accordion-header .accordion-button {
    font-size: 18px;
    line-height: 24px;
  } 
}
/* -------how-it-works---- */
.our-work{
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media(max-width: 768px){
  .page-id-89 .our-work{
  padding-top: 35px;
  padding-bottom: 35px;
}
}
.our-work h5{
  color: #14ACF2 !important;
}
@media(max-width: 992px){
  .our-work h5 {
    font-size: 22px;
  } 
}
.works-wrapper {
  position: relative;
  padding: 100px 0 0px;
}
.works-pulse {
  position: absolute;
  top: 154px;
  left: 50%;
  width: 100%;
  transform: translate(-50%,-50%);
  z-index: 0;
  pointer-events: none;
  max-width: 1440px;
}
/* .works-wrapper::before,
.works-wrapper::after {
  content: "";
  position: absolute;
  top: 40%;
  height: 2px;
  background-color: #0075AE; 
  z-index: 0;
}
.works-wrapper::before {
  left: 0;
  right: 50%;
  top: 109px;
  margin-right: 720px;
}
.works-wrapper::after {
  right: 0;
  left: 50%;
  top: 169px;
  margin-left: 720px;
} */
@media(min-width: 992px){
  .our-work-sub-content {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  
}
.step-container {
  position: relative;
  z-index: 1;
  min-height: 290px;
  max-width: 1440px;
}
@media(max-width: 768px){
  .page-id-89 .step-container {
    min-height: 200px;
  }

}
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
}
.step img {
  width: 65px;
  margin-bottom: 15px;
  opacity: .6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.step-circle {
  background: #1A1A1A;
  color: #ACACAC;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 1px solid #ACACAC;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}
.step-desc h5{
  margin-bottom: 5px;
}
.step-desc p{
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 0;
}
.step-desc {
  background: transparent;
  backdrop-filter: blur(6px);      
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  width: 280px;
  display: none;
  z-index: 2;
  font-size: 14px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
  .step-circle:hover {
    background: #008DD1;
    border: 1px solid #008DD1;
    color: var(--bs-white);
    box-shadow: 0px 0px 31.5px rgba(20, 172, 242, 0.6);
  }
  .step-circle:hover img {
    opacity: 1;
  }
  .step-circle:hover + .step-desc {
    display: block;
  }
}

@media(min-width: 768px){
  .step-1 {
    margin-top: -145px;
    margin-left: 6%;
  }
  .step-2{
  margin-top: -75px;
  }
  .step-3{
  margin-top: 0px;
  }
  .step-4{
    margin-top: -85px;
    margin-right: 95px;
  }
}
@media(min-width: 768px) and (max-width: 1300px){
  .step-1 {
    margin-top: -140px;
  }
}
@media(min-width: 768px) and (max-width: 1200px){
  .step-1 {
    margin-top: -130px;
  }
  .step-desc {
      padding: 6px;
      width: 230px;
    }
}
@media(min-width: 768px) and (max-width: 992px){
  .step-1 {
    margin-top: -105px;
  }
  .step-2{
    margin-top: -65px;
    }
  .step-3{
    margin-top: -20px;
  }
  .step-4{
      margin-top: -70px; 
      margin-right: 35px;
    }
    .step-desc {
        padding: 6px;
        width: 153px;
    }
    .page-template-service .step-desc {
        width: 240px;
    }
}
.step-desc {
  display: none;
}
.step-circle:hover + .step-desc {
  display: block;
}
.step-desc.show-desc {
  display: block;
}
.step-circle.clicked {
  background: #008DD1;
  border: 1px solid #008DD1;
  color: var(--bs-white);
  box-shadow: 0px 0px 31.5px rgba(20, 172, 242, 0.6);
}
.step .clicked-img{
  opacity: 1 !important;
}
@media (max-width: 767px) {
  .step{
    width: auto;
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    gap: 10px;
  }
  .page-id-89 .step{
    min-height: 240px;
    align-items: start;
    margin-top: 40px;
  }
  .step-container{
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-left: 0%;
  }
  .page-id-89 .step-container{
    align-items: center;
    /* margin-left: 10%; */
  }
  .page-id-89 .step-desc{
    position: relative;
    /* margin-top: 74px; */
    top: 0%;
    left: 0%;
  }
  .page-id-89 .step:not(:last-child)::after{
    left: 99px;
  }
  .step img{
    background-color: #1A1A1A;
  }
  .step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 56%;
        bottom: 0px;
        left: 80%;
        height: 320px;
        width: 1.5px;
        background-color: #0075AE;
        transform: translateX(-50%);
        z-index: 0;
    }
  .page-id-89 .step:not(:last-child)::after {
        top: 10px;
        height: calc(100% + 40px);
  }
  .step-desc{
    position: absolute;
    top: 60%;
    right: -90%;
  }
  .works-wrapper {
    padding: 0px 0 0px;
  }
}
@media (max-width: 575px){
  .step-container{
    margin-left: -10%;
  }
}
@media (max-width: 574px){
  .step-container{
    margin-left: -10%;
  }
  .page-id-89 .step-container{
    margin-left: 0%;
  }
  .page-id-89 .step-desc{
    width: 230px;
  }

}
@media(max-width: 419px){
  .page-id-89 .step-desc{
    width: 180px;
  }
}
@media(max-width: 374px){
  .page-id-89 .step-desc{
    width: 140px;
  }
}
/* ----------wokr-image----- */
.work-image {
  position: relative;
  width: 100%; 
  margin: auto;
  overflow: hidden;
  /* padding-top: 80px; */
  padding-bottom: 80px;
}
@media(max-width: 767px){
  .work-image {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.comparison-container {
  position: relative;
  display: block;
  overflow: hidden;
  margin: auto;
  border-radius: 40px;
}
.comparison-container img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 40px;
  height: 400px;
  object-fit: cover;
  object-position: bottom;
}
.comparison-lhs-wrapper img{
  object-position: top;
}
.comparison-lhs,
.comparison-lhs-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.comparison-lhs {
  display: block;
  max-height: none;
}
.comparison-lhs-wrapper {
  width: 100%;
  height: 50%;
  overflow: hidden;
}
.comparison-dragger {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  cursor: ns-resize;
}
.comparison-dragger::before {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 1);
}
.comparison-dragger::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.2em;
  height: 2.2em;
  margin-left: -1.1em;
  margin-top: -1.1em;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comparison-dragger::after {
  background: white url('../images/top-down-icon.png') no-repeat center center;
  background-size: 24px 24px;
}
.caption {
  position: absolute;
  font-weight: 500;
  border-radius: 50px;
  transform: translate(-50%, -50%);
  z-index: 0;
  background-color: var(--bs-light);
  color: var(--bs-secondary);
  font-size: 12px;
  padding: 4px 24px;
  left: 50%;
  font-family: "Inter", sans-serif;
}
.caption.after-text{
  bottom: 15px;
}
.caption.before-text{
  top: 30px;
}
/* ---our-team------ */
.our-team{
  /* padding-top: 80px;
  padding-bottom: 80px; */
  position: relative;
}
.page-id-89 .our-team{
  /* margin-top: 80px; */
  padding-top: 70px;
  padding-bottom: 80px;
}
.our-team-bg{
  position: absolute;
  left: 0;
  bottom: -40%;
  z-index: -1;

}
.our-team .image-block img{
  border-radius: 32px;
  width: 100%;
}
@media(max-width: 768px){
  .page-id-89 .our-team{
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
@media(min-width: 992px){
  .our-team .row{
    --bs-gutter-x: 64px;
  }
}
/* ------advertisment---- */
.price-match{
  background-color: #00CED1;
  border-radius: 16px;
  padding: 32px;
}
.price-match .white-text{
  color: var(--bs-white);
}
.price-match h2,
.price-match p{
  color: #1F2937;
}
@media(max-width: 1439.5px){
  .price-match h2{
    font-size: 36px;
    line-height: 46px;
  }
}

@media(max-width: 376px){
  .price-match h2{
    font-size: 28px;
    line-height: 28px;
  }
  .price-match .btn{
    --bs-btn-padding-x: 17px;
    --bs-btn-font-size: 15px;
  }
  .price-match {
    padding: 22px;
  }
}
.advertisment .zip,
.advertisment .cctv{
  background-color: #333333;
  border-radius: 16px;
  padding: 24px;
}
/* ---------footer--------- */
footer{
  background: #151515;
  padding-top: 64px;
  padding-bottom: 32px;
  position: relative;
}
.footer-pipeline1,
.footer-pipeline2{
  position: absolute;
  z-index: 0;
}
.footer-pipeline1{
  bottom: 0;
  left: 24px;
}
.footer-pipeline2{
  bottom: 0;
  right: 0;
}
@media(max-width: 768px){
  .footer-pipeline2{
      top: 0;
  }
}
.footer-logo{
  width: 110px;
}
footer h6{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 24px;
}
footer .nav-link,
footer .nav-item{
  color: var(--bs-white);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
footer .contact-details a{
  text-decoration: underline;
}
.footer-top{
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}
.footer-top a.nav-link,
.footer-top .nav-item{
  font-family: "Inter", sans-serif;
}
.footer-top a.nav-link:hover {
    color: var(--bs-dark);
}
.footer-bottom{
  border-top: 1px solid #4B5563;
  padding-top: 32px;
}
.footer-bottom p{
  font-size: 14px;
  line-height: 28px;
}
.privacy-rule{
  display: flex;
  gap: 40px;
  z-index: 1;
}
@media(max-width: 992px){
  .footer-top .menu-col{
    padding: 0px 12px !important;
  }
}
.privacy-rule a{
  font-size: 14px;
  line-height: 28px;
  color: var(--bs-white);
}
@media(max-width: 768px){
 .footer-top{
    padding-bottom: 20px;
  } 
  .footer-bottom{
  padding-top: 20px;
  }
}
@media(max-width: 575px) {
  .privacy-rule{
    display: flex;
    gap: 15px;
  }
  .footer-bottom p{
    text-align: center;
  }
}
@media(max-width: 374px) {
  .privacy-rule{
    gap: 12px;
  }
}
footer .contact-details .address-footer-link a
{
  text-decoration: none;
}
/* =======offcanvas======== */
.offcanvas {
    background-color: var(--bs-light);
    width: 100%;
}
.offcanvas.offcanvas-end{
  width: 100%;
}
@media(max-width: 991px) {
    .navbar-brand {
        width: 165px;
    }
    .navbar-brand + .call-cta-btn {
        font-size: 16px;
        padding: 0;
        color: #fff;
        border-color: transparent;
        background-color: transparent;
    }
    .navbar-brand+.call-cta-btn img {
        width: 28px;
    }
}
@media(max-width: 575px) {
    .navbar-brand {
        width: 138px;
    }
}
@media(max-width: 360px) {
    .navbar-brand {
        width: 125px;
    }
    .navbar-brand + .call-cta-btn {
        column-gap: 2px;
        font-size: 12px;
    }
    .call-cta-btn img {
        max-width: 18px;
    }
}
.btn-close:hover{
  color: var(--bs-secondary);
}
.btn-close{
  --bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008dd1'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
}
.offcanvas-header .btn-close{
  opacity: 1;
  margin-right: 0px;
}
.price-match p{
  color: #4B5563;
}
@media(max-width: 1200px){
  .cta-form .submit-col{
    width: 100%;
  }
}
/* =================================== */
/*              SERVICE PAGE           */
/* =================================== */

/* ========HERO BANNER========== */
.service-hero-banner {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}

@media (min-width: 992px) {
  .service-hero-banner .row {
    --bs-gutter-x: 64px;
  }
}

@media (min-width: 1441px) {
  .service-hero-banner .row {
    --bs-gutter-x: 215px;
  }
}

.service-hero-banner.banner-bg-pipeline {
  position: absolute;
  bottom: 0;
  right: 0;
}

.service-hero-banner .btn.btn-primary {
  max-width: 287px;
  margin-top: 26px;
}
.service-hero-banner .btn.btn-outline-primary{
  max-width: 287px;
  margin-top: 26px;
}
.service-hero-banner .banner-image-content {
  position: relative;
}

.background-ellipse {
  position: absolute;
  top: 0;
  left: -30px;
  z-index: -1;
}
@media(min-width: 992px){
  .service-hero-banner h1{
    max-width: 90%;
  }
}
@media(max-width: 374px){
  .background-ellipse {
    left: -20px;
  }
}
/*==========WHY RELINING======= */
.why-relining {
  background-color: #024C70;
  padding-top: 88px;
  padding-bottom: 88px;
}

@media (max-width: 768px) {
  .why-relining {
    padding-top: 70px;
    padding-bottom: 56px;
  }
}

.why-relining-content {
  max-width: 768px;
}

.relining-box {
  background-color: var(--bs-secondary);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--bs-secondary);
  transition: background-color 0.3s ease-in-out;
}

.relining-box:hover {
  background-color: transparent;
}

.relining-box h5 {
  margin-bottom: 12px;
}
@media(min-width: 992px){
  .relining-box h5 {
    min-height: 58px;
  }
  .home .relining-box h5{
    min-height: 32px;
  }
}
.relining-box p {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 0px;
}

.inner-contain {
  margin-top: 32px;
}

/*========OUR WORK========== */
.service-our-work {
  padding-top: 88px;
  background: var(--bs-primary);
}

@media (max-width: 768px) {
  .service-our-work {
    padding-top: 70px;
    padding-bottom: 30px;
  }
}

/* =======GOOGLE REVIEW===== */
.service-google-review-bg{
  position: absolute;
  bottom: 0;
  left: -50px;
  width: 133px;
  z-index: -1;
  padding: 0;
}
.google-review .service-google-review-bg {
  bottom: 50%;
}

@media (max-width: 992px) {
  .google-review .service-google-review-bg {
    bottom: 70%;
  }
}
.google-review .ti-widget.ti-goog .ti-review-content {
    font-size: 16px;
  }

/* ======FULLY LICENSED========= */
.fully-licensed {
  margin-top: 112px;
  margin-bottom: 112px;
  position: relative;
}
.fully-licensed .licensed-content p{
  margin-bottom: 0px;
}
.page-template-service .fully-licensed{
  padding-top: 88px;
  padding-bottom: 88px;
  margin-top: 0;
  margin-bottom: 0px;
}
.page-id-429.page-template-service .fully-licensed{
  padding-top: 44px;
}
.page-id-570.page-template-service .fully-licensed{
  padding-top: 44px;
}
.page-id-580.page-template-service .fully-licensed{
  padding-top: 44px;
}
@media (max-width: 768px) {
  .fully-licensed,
  .page-template-service .fully-licensed{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .page-id-429.page-template-service .fully-licensed,
  .page-id-570.page-template-service .fully-licensed,
  .page-id-580.page-template-service .fully-licensed
  {
    padding-top: 35px;
  }
}

.fully-licensed h2 {
  line-height: 122%;
}

.fully-licensed .btn.btn-primary {
  max-width: 286px;
  padding: 12px 24px;
}

/* .fully-licensed .logo-block {
  gap: 48px;
} */

.licensed-content {
  gap: 32px;
}

@media (max-width: 575px) {
  .licensed-content {
    gap: 18px;
  }
}
.fully-licensed .fully-licensed .licensed-content {
  gap: 32px;
}
.fully-licensed .video-thumbnail-container {
  min-height: 360px;
}
@media (max-width: 992px) {
  .fully-licensed .video-thumbnail-container {
    min-height: 200px;
  }
}
.fully-licensed .video-player {
  height: 100%;
}
.pipeline-fully-licensed {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.logo-block{
      gap: 20px;
}
.logo-block img {
  /* transform: scale(0.9);  */
  /* transform-origin: center; */
  display: inline-block;
      height: 90px;
      
}
@media(min-width: 1199px){
  .logo-block{
    flex-wrap: nowrap !important;
    gap: 40px;
    justify-content: center;
  }
}
@media(min-width: 992px) and (max-width: 1024px){
  .logo-block img {
    /* max-width: 174px; */
  }
}
/* ======LOCAL EXPERTISES===== */
.local-expertises {
  background-color: #232323;
  padding-top: 88px;
  padding-bottom: 88px;
}
.local-expertises.flexible-content p:last-child{
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .local-expertises {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.local-expertises .image-block img {
  border-radius: 32px;
}
@media(min-width: 1024px){
  .page-id-429 .local-expertises .image-block img {
    max-height: 400px;
    object-fit: cover;
    /* width: 100%; */
  }
}
.local-expertises ul {
  /* margin-top: 26px; */
  gap: 24px;
  display: flex;
  flex-direction: column;
}

.local-expertises li {
  list-style: none;
  gap: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  font-family: "Montserrat", sans-serif;
}

.local-expertises li small {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  line-height: 28px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .local-expertises {
    gap: 16px;
  }
  .local-expertises ul small {
    margin-top: 6px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .local-expertises .row,
  .fully-licensed .row {
    --bs-gutter-x: 64px;
  }
}
.local-expertises .text-block h2{
  margin-bottom: 8px;
}
.our-team-section .text-block h2{
  margin-bottom: 16px;
}
.page-id-211 .local-expertises .text-block h4{
  margin-bottom: 28px;
}
@media(max-width: 768px){
  .page-id-211 .local-expertises .text-block h4{
    font-size: 24px;
    margin-bottom: 24px;
  }
}
/* ============================= */
/*        flexible content       */
/* ============================= */
.flexible_subtitle,
.section-subtitle{
  font-size: 22px;
  margin-bottom: 8px;
}
.toggle-section h4{
  font-size: 22px;
}
.flexiblecontent a{
  color: #14ACF2 !important;
  text-decoration: none;
}
@media(max-width: 768px){
  .toggle-section h3{
    font-size: 28px;
  }
}
@media(max-width: 991px){
  .flexiblecontent img{
    max-width: 70%;
  }
  .page-id-429 .flexiblecontent img{
    max-width: 100%;
  }
}
@media(max-width: 575px){
  .flexiblecontent img{
    max-width: 100%;
  }
}
.gray-bg{
  background-color: #232323;
}
.page-id-464 .toggle-section{
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}
.toggle-content h2{
  font-size: 32px;
}
.page-id-590 .toggle-content h2{
  margin-top: 0px !important;
}
.page-id-464 .toggle-content h2,
.page-id-570 .toggle-content h2,
.page-id-590 .toggle-content h2{
  margin-bottom: 8px;
}
.toggle-section ul ,
.content-block-only ul{
    list-style: none;
    padding-left: 0;
}

.toggle-section ul li,
.content-block-only ul li {
    position: relative;
    padding-left: 32px; 
    margin-bottom: 16px;
}
.page-id-429.page-template-service .content-block-only ul li,
.page-id-429.page-template-service .toggle-section ul li{
  margin-bottom: 0px;
}
.page-id-429.page-template-service .content-block-only ul,
.page-id-429.page-template-service .content-block-only ul{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}
.page-id-429.page-template-service .toggle-section ul li {
    font-size: 18px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}
.toggle-section ul li::before,
.content-block-only ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/uploads/2025/07/check.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.page-id-429.page-template-service .toggle-section ul li::before{
  top: 1px;
}
.toggle-section img{
  border-radius: 16px;
}
.toggle-section p:has(img){
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0px 0px;
}
.content-block-only h2{
  font-size: 32px;
  margin-bottom: 22px;
}
.page-id-464 .content-block-only h2,
.page-id-590 .content-block-only h2{
  margin-bottom: 8px;
}
@media(max-width: 575px){
  .content-block-only h2{
    font-size: 30px;
  }
}
.page-id-429 .content-block-only{
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  padding-top: 88px !important;
  padding-bottom: 44px !important;
}
.page-id-464 .content-block-only{
  padding-top: 44px;
  padding-bottom: 88px;
}
@media(max-width: 768px){
  .page-id-429 .content-block-only{
     padding-bottom: 35px !important;
     padding-top: 70px !important;
  }
}
.page-id-429 .content-block-only h2{
  margin-bottom: 8px;
}
.page-id-429 .content-block-only h2:not(:first-of-type) {
  margin-top: 64px;
}
.content-block-only h2:not(:first-of-type) {
  margin-top: 24px;
}

.section-content h4{
  font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bs-text-blue);
}
.section-content a{
  color: #14ACF2 !important;
}
.section-content a:hover{
  text-decoration: underline;
}
.section-content h3{
  font-size: 24px;
  font-weight: 600;

}
.text-block p:empty{
  display: none;
}
/* ==================================== */
/*           why choose us              */
/* ==================================== */
/* .why-choose-us-section{
      height: 959px;
}
.why-choose-list {
  position: relative;

  padding-left: 0;
  margin: 0;
}

.why-choose-list::before {
    content: '';
    width: 574px;
    height: 807px;
    position: absolute;
    top: 23px;
    left: 0;
    right: -275px;
    margin: 0 auto;
    background: url('/wp-content/uploads/2025/07/why-choose-us-center-img.png');
    background-repeat: no-repeat;
}


.why-choose-list li {
  position: relative;
  margin: 40px 0;
  list-style: none;
  width: 100%;
  clear: both;
}

.content {
  width: 45%;
  padding: 15px;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  border-radius: 8px;
}

.content.left {
  float: left;
  text-align: right;
  justify-content: flex-end;
}

.content.right {
  float: right;
  text-align: left;
}

.content img {
  width: 50px;
  height: auto;
}

.content h4 {
  margin: 0 0 5px;
  font-size: 22px;
  color: var(--bs-secondary);
}

.content p {
  margin: 0;
  font-size: 18px;
  color: #fff;
} */
/*Why Choose section*/
.why-choose-us-section{
  overflow-x: clip;
}
.why-choose-content-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    /*grid-gap: 0 95px;*/
}
.why-choose-content-wrap h2.section-heading {
    line-height: 120%;
}
.why-choose-content-wrap .right-side p {
    padding-right: 27px;
}
.why-choose-content-wrap .right-side .btn-wrap.book {
    margin-top: 33px;
}
.why-choose-content-wrap .left-side {
    padding-right: 70px;
}
.why-choose-content-wrap .right-side {
    padding-top: 25px;
    padding-left: 24px;
}

.why-choose-us-section, .steps-section {
    height: 959px;
    /* background: url(../images/why-choose-us-bg-img.jpg) center no-repeat; */
    background-size: 100% 100%;
    padding-top: 88px;
    margin-bottom: 88px;
}
.why-choose-us-content-wrap ul {
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
}
.why-choose-us-content-wrap ul::before {
    content: '';
    width: 574px;
    height: 807px;
    position: absolute;
    top: 23px;
    left: 0;
    right: -275px;
    margin: 0 auto;
    background: url('/wp-content/uploads/2025/07/why-choose-us-center-img.png');
    background-repeat: no-repeat;
}
.why-choose-us-content-wrap .content{
  margin-bottom: 14px;
}
.why-choose-us-content-wrap ul li {
    float: left;
    max-width: 445px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 40px;
    margin-top: 158px;
}
body .steps-content-wrap ul li {
    max-width: 446px;
}
body .steps-content-wrap .step h4 {
    margin-bottom: 5px;
}
.why-choose-us-content-wrap ul li:nth-child(odd) {
    text-align: right;
    clear: both;
    margin-right: 140px;
    margin-top: 0;
}
.why-choose-us h4 , .steps-content-wrap .step h4{
    margin-bottom: 8px;
    color: var( --bs-text-blue);
    font-size: 28px;
}
.why-choose-us-section h2.section-heading::before {
    background-color: #edf4f6;

}
.why-choose-us-content-wrap ul li {
    float: left; /* default fallback */
    max-width: 445px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 18px;
    margin-top: 158px;
}

.why-choose-us-content-wrap ul li:nth-child(odd) {
    float: left;
    text-align: right;
    clear: both;
    margin-left: -30px;
    margin-top: -10px;
}

.why-choose-us-content-wrap ul li:nth-child(even) {
    float: right;
    text-align: left;
    clear: both;
    margin-right: 10px;
    margin-top: 0px;
}
/* =========responsive============ */
@media(max-width: 1199px) {
  .why-choose-us-content-wrap ul li {
      max-width: 390px;
  }
}
@media(max-width: 991px) {
  .why-choose-us-content-wrap p {
    font-size: 16px;
    line-height: 22px;
  }
  .why-choose-us-content-wrap ul li:nth-child(odd) {
    margin-left: -35px;
    margin-top: -18px;
  }
  .why-choose-us-content-wrap ul li {
    max-width: 285px;
  }
  .why-choose-us-content-wrap ul li:nth-child(even) {
    margin-right: 0px;
  }
  .why-choose-us h4{
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .why-choose-us-section{
    padding-top: 35px;
    margin-bottom: 80px;
  }
      .why-choose-content-wrap {
        grid-template-columns: none;
        flex-direction: column;
    }
    .why-choose-content-wrap .right-side {
        padding-top: 0;
        padding-left: 0;
    }
    .why-choose-content-wrap .right-side .btn-wrap.book {
        margin-top: 13px;
        text-align: center;
    }
    .why-choose-us-content-wrap ul li:nth-child(odd)
     {
        margin-right: 0;
        float: none !important;
        text-align: left;
        margin-bottom: 23px;
        margin-top: 0;
        margin-left: -30px !important;
    }
    .why-choose-us-content-wrap ul li:nth-child(even)
     {
        float: none !important;
        margin-left: -30px !important;
    }
    .why-choose-us-content-wrap ul li {
        margin-top: 0px;
        max-width: 100%;
        float: none;
        padding-left: 85px;
        margin-bottom: 23px;
        position: relative;
    }
    .why-choose-us-content-wrap ul
     {
        padding-top: 13px;
    }
    .why-choose-us-content-wrap ul::before{
        right: auto;
        top: 28px;
        left: 28px;
        width: 15px;
        height: 100%;
        background-color: #666666;
        background-image: none;
    }
    .why-choose-us-content-wrap ul > li::before{
        content: '';
        width: 70px;
        height: 70px;
        position: absolute;
        left: 0;
        top: 0;
        bottom: auto;
        margin: auto;
        background: url('/wp-content/uploads/2025/07/why-choose-us-responsive-img.png');
        background-repeat: no-repeat;
        background-size: 100%;
    }
    .why-choose-us-content-wrap ul::after{
        content: '';
        width: 417px;
        height: 100%;
        position: absolute;
        top: auto;
        left: -69px;
        right: auto;
        margin: 0 auto;
        background: url('/wp-content/uploads/2025/07/why-choose-us-responsive-img-treeroot.png');
        background-repeat: no-repeat;
        background-size: 100%;
    }
    .why-choose-us-section {
        height: auto;
        padding-bottom: 120px;
    }
    .why-choose-us-content-wrap ul > li:nth-child(2)::before {
        background-position: 0 -115px;
    }
    .why-choose-us-content-wrap ul > li:nth-child(3)::before {
        background-position: 0 -230px;
    }
    .why-choose-us-content-wrap ul > li:nth-child(4)::before {
        background-position: 0 -347px;
    }
}
@media (max-width: 575px) {
    .why-choose-us-section {
        /* height: 900px; */
    }
}
@media(max-width: 424px){
  .why-choose-us-section {
    /* height: 1100px; */
    overflow-x: clip;
  }
}
@media(max-width: 364px){
  .page-id-89 .why-choose-us-content-wrap ul li{
      max-width: 110%;
  }
  .why-choose-us-section {
    /* height: 1200px; */
  }
}
/* =========flexible content home page=========== */
@media(max-width: 575px){
  .home_flexible_section img{
    max-width: 85%;
  }
}
@media(max-width: 480px){
  .home_flexible_section img{
    max-width: 100%;
  }
}
.page-id-89 .second-flex{
  padding-top: 70px;
}
.home_flexible_section .image-block img{
  border-radius: 18px;
}
@media(min-width: 991px ){
  .flexible-content h2{
    margin-bottom: 20px;
  }
}
.flexible-content .content p{
  margin-bottom: 16px;
}
.our_company_name {
  font-size: 20px;
}
.home-relining-section .why-relining-content{
  max-width: 90%;
  line-height: 26px;
}


.hyrdo-jetting-list {
  gap: 80px;
}
.hyrdo-jetting-list li{
  margin-bottom: 0px;

}
.hyrdo-jetting-list ul{
    list-style: none;
    padding-left: 0;
}
.hyrdo-jetting-list ul li {
    position: relative;
    padding-left: 32px; 

}
.hyrdo-jetting-list ul li:not(:last-child){
    margin-bottom: 0px;
}
.hyrdo-jetting-list ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/uploads/2025/07/check.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.hyrdo-jetting-list ul {
    column-count: 2;         /* Split into 2 columns */
    column-gap: 40px;        /* Space between columns */
}

@media (max-width: 768px) {
    .hyrdo-jetting-list ul {
        column-count: 1;     /* Stack into one column on small screens */
    }
}

/* =================================== */
/*              CONTACT PAGE           */
/* =================================== */

/* ================= HERO BANNER ================= */
.subpage-banner {
  padding-top: 35px;
  padding-bottom: 70px;
  position: relative;
}
@media(max-width: 767px){
  .subpage-banner h1{
      font-size: 32px;
      line-height: 38px;
  }
}
.contact-hero-banner.banner-bg-pipeline {
  position: absolute;
  bottom: 0;
  right: 0;
}

.contact-hero-banner .btn.btn-primary {
  max-width: 287px;
  margin-top: 26px;
}


/* HERO BANNER - RESPONSIVE GUTTER */
@media (min-width: 992px) {
  .contact-hero-banner .row {
    --bs-gutter-x: 64px;
  }
}

@media (min-width: 1441px) {
  .contact-hero-banner .row {
    --bs-gutter-x: 215px;
  }
}
/* ================= CONTACT FORM SECTION ================= */
.contact-form-section {
  background-color: #024C70;
  padding-top: 64px;
  padding-bottom: 64px;
}

.contact-form-section h2 {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 32px;
}

.contact-short-description {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 32px;
}

/* FORM STRUCTURE */
.wpcf7-form p {
  width: 100%;
}

.wpcf7-form p label,
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  box-sizing: border-box;
}
input::placeholder,
textarea::placeholder {
  font-style: normal !important; 
}

/* FORM STYLES */
.form-wrapper label {
  margin-bottom: 20px;
}
.form-wrapper .wpcf7-not-valid-tip{
  margin-left: 18px;
  font-size: 15px;
  margin-top: 4px;
  font-family: 'Inter';
}
.form-wrapper label:last-child {
  margin-bottom: 0px;
}
.form-wrapper br{
  display: none !important;
}
.form-wrapper input,
.form-wrapper textarea {
  padding: 13px 25px;
  font-size: 16px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 32px;
  color: #fff !important;
}
.form-wrapper textarea {
  border-radius: 22px;
}
.form-wrapper .wpcf7-submit {
  padding: 10px 24px;
  border-radius: 50px;
  min-width: 180px;
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
  color: var(--bs-white);
  transition: all 0.4s ease-in;
}

.form-wrapper .wpcf7-submit:hover {
  background-color: var(--bs-dark);
  border-color: var(--bs-dark);
}

/* Textarea & Message Handling */
.wpcf7-form .row {
  display: flex;
  flex-wrap: wrap;
}

.wpcf7-form .col-md-6 {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.wpcf7-form textarea {
  flex: 1;
  height: 100%;
  resize: none;
}

.message-column p,
.message-column label,
.message-column span {
  height: 100%;
}

/* Response Validation */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: red;
  color: red;
}

/* Placeholder Styling */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #fff;
  opacity: 0.8;
  font-style: italic;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: #46b450;
}
.wpcf7-submit {
  order: 2;
}

.wpcf7-spinner {
  order: 1;
  margin-right: 10px; /* Optional spacing between spinner and button */
  background-color: rgba(20, 172, 242, 0.45);
}

/* Apply flexbox to the container */
.wpcf7-submit,
.wpcf7-spinner {
  display: inline-block;
  vertical-align: middle;
}
.submit-container p{
  display: flex;
  justify-content: end;
  align-items: center;
}
/* ================= CUSTOM CONTACT SECTION ================= */
.custom-contact-section {
  background-color: #232323;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.custom-contact-section a:hover{
 box-shadow: rgba(20, 172, 242, 0.2) 0px 2px 10px;
}
.custom-contact-section a {
  color: #fff;
}

/* ================= CONTACT TAB ================= */
.contact-tab {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: inline-flex !important;
  padding: 14px 28px;
  position: relative;
}

.contact-tab .img-tab {
  background-color: var(--bs-secondary);
  border-radius: 50px;
  padding: 10px;
}

.contact-tab .img-tab img {
  margin-top: 2px;
}

.contact-tab .contact-content-tab p {
  margin-bottom: 0;
}

.contact-content-tab small {
  position: absolute;
  top: -10px;
  left: 30px;
  background: #232323;
  font-size: 14px;
  padding: 0px 4px;
  margin-bottom: 0;
  line-height: 18px;
}
@media(max-width: 768px){
  .submit-container p{
    justify-content: start;
  }
  .wpcf7-spinner{
    order: 2;
  }
}
@media(max-width: 374px){
  .contact-tab .contact-content-tab p {
    font-size: 14.5px;
  }
}

/* ================= MAP SECTION ================= */
.map-section {
  position: relative;
  margin: 80px 0px 0px;
}

.map-section iframe {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.map-section .map-adress {
  padding-top: 14px;
  padding-bottom: 14px;
  margin-top: -8px;
  background-color: var(--bs-secondary);
  /* position: absolute;
  bottom: 0; */
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.contact-section-details{
  display: inline-flex;
}
.contact-content-tab p {
  word-break: break-word;
  overflow-wrap: break-word;
}
.contact-section-details .img-tab img{
  min-width: 32px;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 376px) {
  .contact-tab {
    padding: 12px 12px;
  }

  .contact-tab .img-tab {
    padding: 5px;
  }
}

/* =============work galler======= */
.work-gallery{
  background-color: #232323;
  padding-top: 70px;
  padding-bottom: 70px;
}
.gallery {
  display: flex;
  row-gap: 24px;
  /* flex-wrap: wrap; */
}
.gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
}
.fancybox__thumbs {
  display: none !important;
}

.gallery a img {
  width: 100%;
  display: block;
  border-radius: 5px;
  border-radius: 20px;
}

.gallery a::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 172, 242, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in;
  border-radius: 20px;
}

.gallery a::before {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  z-index: 2;
  pointer-events: none;
}
.gallery .gallery-item{
  padding: 0px 12px;
}

.gallery a:hover::after,
.gallery a:hover::before {
  opacity: 1;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after{
  border-color: #008dd1;
}
.has-image[data-image-fit=contain] .fancybox__image{
  border-radius: 20px;
}
button.carousel__button.is-next,
button.carousel__button.is-prev{
  border: 2px solid #fff;
}
@media(max-width: 575px){
  .gallery .gallery-item{
    padding: 0px 6px;
  }
  .gallery{
    row-gap: 12px;
  }
}
.fancybox__button--thumbs{
  display: none !important;
}
@media(max-width: 480px){
  button.carousel__button.is-next,
  button.carousel__button.is-prev{
    top: 85%;
  }
  .fancybox__nav .carousel__button.is-prev {
    left: auto;
    right: 60px;
  }
}
.carousel__button[disabled] {
    display: none !important;
}
/* ======innere page banner============== */
@media(min-width: 768px) {
  .subpage-banner .banner-image-content img{
    max-width: 350px;
  }
}

.subpage-banner .banner-image-content{
  justify-content: center !important;
}
.inner_our_process.why-choose-us-section{
  padding-top: 80px;
  padding-bottom: 80px;
}
.inner_our_process .why-choose-us-content-wrap ul::before{
    content: '';
    height: 894px;
    top: 23px;
    left: 0;
    right: -275px;
    background: url('/wp-content/uploads/2025/08/why-choose-our-process-steps-image.png');
    background-repeat: no-repeat;
}
.inner_our_process .why-choose-us-content-wrap ul li{
  max-width: 520px;
}
.inner_our_process .why-choose-us-content-wrap ul li:nth-child(odd) {
  margin-left: -100px;
}
.inner_our_process .why-choose-us-content-wrap ul li:nth-child(even){
  margin-right: -60px;
  margin-top: -20px;
  margin-bottom: -10px;
}
.inner_our_process.why-choose-us-section, .inner_our_process .steps-section{
  height: 1050px;
  margin-bottom: 70px;
}
@media(max-width: 1280px){
  .inner_our_process .why-choose-us-content-wrap ul li{
    max-width: 480px;
  }
  .inner_our_process .why-choose-us-content-wrap ul li:nth-child(even) {
    margin-right: -25px;
    margin-top: -30px;
    margin-bottom: -45px;
  }
  .inner_our_process .why-choose-us-content-wrap ul li:nth-child(odd) {
    margin-left: -60px;
    margin-top: -10px;
  }
}
@media(max-width: 1199px){
  .inner_our_process .why-choose-us-content-wrap ul li:nth-child(even) {
    margin-right: 10px;
    margin-top: -80px;
    margin-bottom: -65px;
  }
  .inner_our_process .why-choose-us-content-wrap ul li:nth-child(odd) {
    margin-left: -30px;
  }
  .inner_our_process .why-choose-us-content-wrap ul li {
      max-width: 400px;
  }
}
@media (max-width: 991px) {
    .inner_our_process .why-choose-us-content-wrap ul li {
        max-width: 285px;
    }
    .inner_our_process .why-choose-us-content-wrap ul li:nth-child(even) {
      margin-right: 5px;
      margin-top: -80px;
      margin-bottom: -35px;
    }
    .inner_our_process .why-choose-us-content-wrap ul li:nth-child(odd) {
      margin-left: -35px;
    }
}

@media (max-width: 767px) {
    .inner_our_process .why-choose-us-content-wrap ul > li::before{
      background: url('/wp-content/uploads/2025/08/why-choose-us-our-process-mobile.png');
      background-repeat: no-repeat;
      background-size: 100%;
    }
    .inner_our_process .why-choose-us-content-wrap ul::before {
        right: auto;
        top: 28px;
        left: 28px;
        width: 15px;
        height: 100%;
        background-color: #666666;
        background-image: none;
    }
    .inner_our_process .why-choose-us-content-wrap ul li {
        max-width: 100%;
    }
    .inner_our_process .why-choose-us-content-wrap ul li:nth-child(even) {
        margin-top: 30px;
        margin-bottom: 0px;
    }
    .inner_our_process .why-choose-us-content-wrap ul li:nth-child(odd) {
      margin-top: 0px;
    }
    .why-choose-us-content-wrap ul li:nth-child(3) {
        margin-top: 30px !important;
    }
    .inner_our_process.why-choose-us-section, .inner_our_process .steps-section {
        height: auto;
    }
    .inner_our_process.why-choose-us-section{
      padding: 70px 0 88px;
    }
    .inner_our_process .why-choose-us-content-wrap ul > li:nth-child(2)::before {
        background-position: 0 -127px !important;
    }
    .inner_our_process .why-choose-us-content-wrap ul > li:nth-child(3)::before {
        background-position: 0px -258px !important;
    }
    .inner_our_process .why-choose-us-content-wrap ul > li:nth-child(4)::before {
        background-position: 0 -389px !important;
    }

}
/* ======demo==== */
@media(max-width: 991px){
  .why-us-section h2{
    margin-bottom: 20px;
  }
}
.why-us-section h4{
	font-size: 20px;
	color: var(--bs-text-blue);
}
.why-us-section .row{
  --bs-gutter-x: 40px;
}
.why-us-section{
background: #232323;
	padding-top: 80px;
	padding-bottom: 80px;
}
.why-us-section .hyrdo-jetting-list ul li:not(:last-child) {
    margin-bottom: 18px;
}
.why-us-section .hyrdo-jetting-list ul li::before {
    top: 4px;
}
@media(max-width: 768px){
  .why-us-section{
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media(max-width: 575px){
  .why-us-section .hyrdo-jetting-list {
    gap: 0px;
    flex-direction: column;
}
}
.why-us-section ul {
  display: flex;
  flex-wrap: wrap;
  /* gap: 0px 24px;  */
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.why-us-section ul li {
  width: calc(50% - 0px); /* two columns with gap */
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
}

.why-us-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url('/wp-content/uploads/2025/07/check.png');
  background-size: contain;
  background-repeat: no-repeat;
}
@media(max-width: 575px){
  .why-us-section ul li {
    width: 100%; 
    }
}
/* ============================= */
/*            Main Service       */
/* ============================= */
.main-service{
  background-color: #232323;
}
.main-service .our-service-pipeline2{
  z-index: 0;
}
.main-service .service-card{
  position: relative;
  z-index: 1;
  row-gap: 24px;
}
@media (max-width: 768px) {
    .main-service{
        padding-bottom: 70px;
    }
}
@media (max-width: 767px) {
    .service-pipelining .step-desc {
        position: relative;
        right: 0;
        top: 0;
        /* width: 100%; */
    }
    .service-pipelining .step {
        min-height: 100%;
        margin-top: 56px;
        align-items: start;
    }
    .service-pipelining.step-container{
      margin-left: 0 ;
    }
    .service-pipelining .step:not(:last-child)::after{
      left: 99px;
    }
    .step:not(:last-child)::after {
        top: 40px;
        height: calc(100% + 40px);
        z-index: -1;
    }
    .service-pipelining .step-circle{
      min-width: 48px;
    } 
}
@media (max-width: 574px) {
    .service-pipelining .step-container{
      margin-left: 0 ;
    }
    .service-pipelining .step{
      gap: 5px;
    }
    .service-pipelining .step:not(:last-child)::after {
      left: 95px;
    }
    .service-pipelining .step-desc {
        width: 230px;
    }
}
@media (max-width: 419px) {
    .service-pipelining .step-desc {
        width: 180px;
    }
}
@media(max-width: 374px){
    .service-pipelining .step:not(:last-child)::after {
      left: 84px;
    }
    .service-pipelining .step img{
      width: 55px;
    } 
    .service-pipelining .step-desc {
        width: 100%;
    }
}
/* =================================== */
/*        Content Page Template        */
/* =================================== */
.default-page-content{
    background-color: #232323;
    padding-top: 70px;
    padding-bottom: 70px;
    font-weight: 500;
}
.default-page-content h4{
  font-size: 26px;
  margin: 24px 0px;
  font-weight: 600;
  color: var(--bs-text-blue);
}
.page-id-1137 .default-page-content .container > h4{
  margin: 0px 0px 24px;
}
.default-page-content h5{
  font-size: 18px;
  font-weight: 600;
}
.default-page-content .blue-text b{
  font-weight: 500;
  color: #fff;
}
.default-page-content ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.default-page-content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
}

.default-page-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url('/wp-content/uploads/2025/07/check.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.default-page-content a{
  text-decoration: underline;
  color: #fff;
}
.default-page-content .blue-text{
  color: var(--bs-text-blue);
}
.default-page-content ol h4{
  margin-bottom: 12px;
  font-size: 24px;
}
.default-page-content ol h4{
  margin: 0px;
}
.default-page-content .container > ol{
  margin-top: 24px;
}
ol li ol li {
    padding-left: 35px;
    line-height: 150%;
}
ol li {
    display: table;
    padding-left: 26px;
    position: relative;
    margin: 10px 0;
}
ol {
    margin: 0;
    padding: 0;
    counter-reset: decimal;
    list-style: none;
}
ol li::before {
    display: table-cell;
    content: counters(decimal, ".") ".";
    counter-increment: decimal;
    position: absolute;
    left: 0;
    top: 2px;
}
li:after {
    clear: both;
    display: block;
    content: "";
}
ol li ol li::before{
  top: 0px;
}
ol li ol li{
  padding-left: 42px;
}
ol[type="a"] {
    counter-reset: alpha;
}
ol[type="a"] > li{
  padding-left: 32px;
}
ol[type="a"] > li::before {
  content: counter(alpha, lower-alpha) ")";
  counter-increment: alpha;
}
ol[type="i"] > li {
  counter-increment: item;
  position: relative;
  padding-left: 32px;
}
ol[type="i"] > li:last-child{
  margin-bottom: 0px;
}
ol[type="i"] > li::before {
  content: "(" counter(item, lower-roman) ") ";
  position: absolute;
}
/* ==========zip pay content======== */
.zip-pay-wrapper {
  background-color: #232323;
  padding: 70px 0;
}
.zip-pay-content{
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(217, 217, 217, 0.5);
  border-radius: 20px;
  padding: 53px 0 45px;
  max-width: 980px;
  margin: 0 auto;
}
.zip-pay-card{
  max-width: 800px;
  margin: 0 auto;
}
.zip-pay-content img{
  margin: 24px auto;
  border-radius: 12px;
  max-width: 280px;
}
.zip-pay-content .main-title{
  margin-bottom: 9px;
}
.zip-pay-content h4{
  color: var(--bs-text-blue);
}
.zip-pay-content h5{
  font-size: 28px;
  font-weight: 600;
  color: var(--bs-text-blue);
}
.zip-pay-content a{
  color: #fff;
  text-decoration: underline;
}
.zip-pay-content a:hover{
  color: var(--bs-text-blue);
}
.zip-pay-content p{
  margin-bottom: 23px;
}
.logo-descrpition{
  font-size: 15px;
  margin-bottom: 18px;
  margin-top: -14px;
}
.spending-account{
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 23px;
}
.zip-pay-content h4{
  margin-bottom: 11px;
}
.zip-pay-content .terms > p {
  margin-bottom: 26px;
}
.zip-pay-content small{
  font-size: 15px;
  line-height: 180%;
}
.zip-pay-content .terms p:last-child{
  margin-bottom: 0px;
}
@media(max-width: 900px) {
  .zip-pay-card{
    max-width: 600px;
  }
  .zip-pay-content img{
    max-width: 240px;
  }
}
@media(max-width: 575px) {
  .zip-pay-content{
    padding: 40px 24px 40px;
  }
  .zip-pay-content p {
    margin-bottom: 18px;
  }
  .zip-pay-content h4 {
    font-size: 22px;
  }
  .zip-pay-content h5{
    font-size: 24px;
  }
}
@media(max-width: 374px) {
  .zip-pay-content{
    padding: 53px 14px 45px;
  }
}
/* ============================ */
/*            sitemap           */
/* ============================ */
.sitemap-section{
  background: #232323;
  padding: 70px 0px;
}
.sitemap-links ul {
  margin-left: 20px;
  list-style: disc;
  display: block !important;
  position: relative;
}

.sitemap-links li {
  margin-bottom: 16px;
  position: relative;
  color: #fff;
}
.sitemap-links li:last-child{
  margin-bottom: 0px;
}
.sitemap-links ul.dropdown-menu{
  background-color: transparent;
  border-radius: 0px;
  border-top: 0px solid var(--bs-secondary);
  border-width: 0px;
  padding: 0px;
  margin-top: 16px;
}
.sitemap-links .menu-item a{
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.sitemap-links .menu-item a:hover{
  color: var(--bs-text-blue);
}
.sitemap-menu li a {
    position: relative;
    padding-left: 25px;
    display: inline-block;
}
/* Arrow icons for sitemap menu */
.sitemap-menu li a {
  position: relative;
  padding-left: 28px; 
  display: inline-block;
}
.sitemap-menu li a::before,
.sitemap-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.4s ease-in-out;
}
.sitemap-menu li a::before {
  background-image: url('/wp-content/uploads/2025/08/double-chevron-arrow.svg');
  opacity: 1;
}
.sitemap-menu li a::after {
  background-image: url('/wp-content/uploads/2025/08/double-chevron-blue.svg');
  opacity: 0;
}
.sitemap-menu li a:hover::before {
  opacity: 0;
}
.sitemap-menu li a:hover::after {
  opacity: 1;
}
/* =======================
   General Blog Page Styles
========================== */
.blog-page {
  background-color: #232323;
  padding: 70px 0px;
}

@media (min-width: 1025px) {
  .blog-page .col-lg-8 {
    padding-right: 45px;
  }
  .blog-page .col-lg-4 {
    padding-left: 25px;
  }
}
.archive h1{
  text-transform: capitalize;
}
.archive .special-text{
  text-transform: capitalize;
}
.post-thumbnail img{
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
/* =======================
   Blog Post Title
========================== */
.blog-post .post-title,
.blog-post .post-title a {
  color: var(--bs-text-blue);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media(max-width: 575px){
  .blog-post .post-title,
  .blog-post .post-title a {
    font-size: 26px;
  }
}
.blog-post .post-title:hover,
.blog-post .post-title a:hover {
  color: #fff;
}

/* =======================
   Post Meta (Date, Author, Category)
========================== */
.post-meta {
  margin-bottom: 16px;
  font-size: 18px;
}

.post-meta a {
  color: #fff;
  text-decoration: underline;
}

.post-meta a:hover {
  color: var(--bs-text-blue);
}

.post-date-month {
  font-size: 18px;
}

/* =======================
   Post Excerpt
========================== */
.post-excerpt {
  margin-top: 16px;
}

/* =======================
   Blog Post Container
========================== */
.blog-post {
  padding: 0px 0px 36px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-post:last-child{
  border-bottom-width: 0px;
}
/* =======================
   Read More Button
========================== */
.blog-page .post-readmore {
  margin-top: 10px;
}

.blog-page .read-more {
  padding: 14px 24px;
  color: #fff;
  background-color: var(--bs-text-blue);
  margin-top: 10px;
  border-radius: 50px;
  font-size: 18px;
  line-height: 28px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.blog-page .read-more:hover {
  background-color: #1127ae;
}
@media(max-width: 768px){
  @media(max-width: 991px){
    .blog-page .read-more {
      font-size: 16px;
      line-height: 20px;
    }
    .blog-page .read-more  img{
      width: 14px;
    }
}
}
/* =======================
   Custom Search Form
========================== */
.custom-search-form {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.custom-search-form .search-field {
  flex: 1;
  padding: 6px 14px;
  border: none;
  outline: none;
  font-size: 16px;
}

@media (max-width: 374px) {
  .custom-search-form .search-field {
    width: 100%;
  }
}

.custom-search-form .search-submit {
  background: transparent;
  border: none;
  padding: 0 12px;
  cursor: pointer;
  color: #232323;
  font-size: 16px;
}

/* =======================
   Widget Styles
========================== */
.widget input::placeholder {
  color: #232323;
}

.widget-area .widget-title {
  font-size: 20px;
  background: var(--bs-text-blue);
  border: 1px solid var(--bs-text-blue);
  color: #fff;
  font-weight: 600;
  text-align: start;
  padding: 10px 12px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 0px;
}

/* =======================
   Blog Widget
========================== */
.blog-widget {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 10px;
}

.blog-widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Borders for list items except last child */
.lpost-widget ul.posts-list li:not(:last-child),
.blog-widget ul.catgeory-list li:not(:last-child),
.blog-widget ul.archive-list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.40);
}

/* Post List in Sidebar */
.lpost-widget ul.posts-list li {
  display: grid;
  align-items: start;
  padding: 12px;
  grid-template-columns: 100px 1fr;
  grid-gap: 0 20px;
}
@media(max-width: 479px){
  .lpost-widget ul.posts-list li {
    grid-gap: 0 10px;
  }
}
.lpost-widget .post-image img {
  height: 100%;
  border-radius: 4px;
}
@media screen and (max-width: 374px) {
    .lpost-widget ul.posts-list li {
        grid-template-columns: 1fr; 
        grid-gap: 0px 0; 
    }
    .lpost-widget .post-image img {
      margin-bottom: 10px;
    }
}
/* Post info inside widget */
.post-info .post-title,
.post-info .post-title a {
  font-size: 18px;
  line-height: 20px;
  color: var(--bs-text-blue);
  margin-bottom: 6px;
  font-weight: 600;
}

.post-info .post-title:hover,
.post-info .post-title a:hover {
  text-decoration: underline;
}

.post-info p.post-date,
.post-info p.post-author {
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 20px;
}

.post-info p.post-author {
  margin-bottom: 0;
}

/* =======================
   Category & Archive List Styling
========================== */
.blog-widget ul.catgeory-list li,
.blog-widget ul.archive-list li {
  align-items: start;
  padding: 12px;
}

.blog-widget ul.catgeory-list li a,
.blog-widget ul.archive-list li a {
  color: #fff;
  position: relative;
  padding-left: 25px;
  display: inline-block;
  transition: color 0.3s ease;
}

.blog-widget ul.catgeory-list li a:hover,
.blog-widget ul.archive-list li a:hover {
  color: var(--bs-text-blue);
}

/* Arrow icons before/after links */
.blog-widget ul.catgeory-list li a::before,
.blog-widget ul.archive-list li a::before,
.blog-widget ul.catgeory-list li a::after,
.blog-widget ul.archive-list li a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.6s ease-in-out;
}

.blog-widget ul.catgeory-list li a::before,
.blog-widget ul.archive-list li a::before {
  background-image: url('/wp-content/uploads/2025/08/double-chevron-arrow.svg');
  opacity: 1;
}

.blog-widget ul.catgeory-list li a::after,
.blog-widget ul.archive-list li a::after {
  background-image: url('/wp-content/uploads/2025/08/double-chevron-blue.svg');
  opacity: 0;
}

.blog-widget ul.catgeory-list li a:hover::before,
.blog-widget ul.archive-list li a:hover::before {
  opacity: 0;
}

.blog-widget ul.catgeory-list li a:hover::after,
.blog-widget ul.archive-list li a:hover::after {
  opacity: 1;
}

/* Archive list scrollbar */
.blog-widget ul.archive-list {
  max-height: 460px;
  overflow-y: auto;
}

/* =======================
   Scrollbar Styling for Blog Widget Lists
========================== */
.blog-widget ul::-webkit-scrollbar {
  width: 8px;
}

.blog-widget ul::-webkit-scrollbar-track {
  background: rgba(20, 172, 242, 0.08);
}

.blog-widget ul::-webkit-scrollbar-button {
  display: none;
}

.blog-widget ul::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

/* Scrollbar thumb specifically for tag-cloud */
.blog-widget .tag-cloud::-webkit-scrollbar-thumb {
  background-color: #14acf2;
  border-radius: 10px;
}

/* =======================
   Tag Cloud Styling
========================== */
.blog-widget .tag-cloud ul {
  max-height: 280px;
  overflow-y: auto;
}

.blog-widget ul.wp-tag-cloud {
  padding-left: 12px;
  padding-top: 12px;

  /* repeated twice - merged here */
  display: flex;
  flex-wrap: wrap;
  gap: 1ch;
  padding: 10px;
}

.blog-widget .wp-tag-cloud li {
  border-radius: 4px;
  border-color: rgba(255, 255, 255, 0.8) !important;
  padding: 1px 10px;
  border: 1px solid;
  color: #fff;
  float: none;
  margin: 0;
}

.blog-widget .wp-tag-cloud li a {
  color: #fff;
  font-size: 16px !important;
}

/* =======================
   Pagination Styling
========================== */
.navigation.pagination {
  justify-content: center;
}

@media (min-width: 993px) {
  .navigation.pagination {
    justify-content: center;
  }
}

.navigation.pagination .page-numbers {
  padding: 10px 18px;
  line-height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
}

.navigation.pagination .page-numbers.current {
  background: var(--bs-text-blue);
}

.navigation.pagination .page-numbers:hover {
  background: var(--bs-text-blue);
}

.navigation.pagination .nav-links {
  display: flex;
  gap: 8px;
}
@media(max-width: 575px){
    .navigation.pagination .page-numbers {
      padding: 7px 12px;
    }
    .navigation.pagination .nav-links {
      gap: 0px;
    }
}
@media(max-width: 374px){
    .navigation.pagination .page-numbers {
      padding: 4px 10px;
      font-size: 16px;
    }   
    
}
/* =======================
   Single Page Banner
========================== */
.single-blog-banner h4{
  font-size: 24px;
  font-weight: 500;
}
.single-blog-page{
  padding: 35px 0px 70px;
}
@media (min-width: 1025px) {
  .single-blog-page .col-lg-8 {
    padding-right: 45px;
  }
  .single-blog-page .col-lg-4 {
    padding-left: 25px;
  }
}
.single-blog-page .post-thumbnail{
  margin-bottom: 16px;
}
.post-content a, .post-content a strong{
  font-weight: inherit;
}
.post-content p{
  text-align: start !important;
}
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6{
   color: var(--bs-text-blue);
   font-weight: 600;
   text-align: start !important;
}
.post-content h2,
.post-content h3,
.post-content h4{
  font-size: 28px;

  
}
.single-blog-page .blog-post{
  border-bottom-width: 0px ;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.post-content ul{
    list-style: none;
    padding-left: 0;
}
.post-content ul li {
    position: relative;
    padding-left: 32px; 
    margin-bottom: 16px;
}
.post-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/uploads/2025/07/check.png');
    background-size: contain;
    background-repeat: no-repeat;
}
/* =======================
   Search Page
========================== */
.search-container{
  background-color: #232323;
  padding: 70px 0px;
}
@media (min-width: 1025px) {
  .search-container .col-lg-8 {
    padding-right: 45px;
  }
  .search-container .col-lg-4 {
    padding-left: 25px;
  }
}
.search-container .search-result-item h2,
.search-container .search-result-item h2 a{
    color: var(--bs-text-blue);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
/* ========================== */
/*          service area      */
/* ========================== */
.service-area-page{
  background-color: #232323;
  padding-top: 70px;
  padding-bottom: 70px;
}
.local-expertises.servoce-area-involved .text-block h2{
  margin-bottom: 14px;
}
.service-area-page .toggle-section{
  padding-bottom: 40px;
}
.local-expertises.servoce-area-involved{
  background-color: #1A1A1A;
  padding-top: 70px;
  padding-bottom: 70px;
}
.servoce-area-involved ul,
.our-service-block ul,
.servoce-area-service ul{
    list-style: none;
    padding-left: 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
    margin: 18px 0px;
}
.servoce-area-involved ul li,
.our-service-block ul li,
.servoce-area-service ul li {
    position: relative;
    padding-left: 32px; 
    margin-bottom: 0px;
    font-weight: normal;
    font-size: 18px;
    line-height: 26px;
    list-style: none;
    gap: 12px;
    font-family: "Inter" , sans-serif;
}
.servoce-area-involved ul li::before,
.our-service-block ul li:before,
.servoce-area-service ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/uploads/2025/07/check.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.local-expertises.servoce-area-service{
  background-color: #232323;
  padding-top: 70px;
  padding-bottom: 70px;
}
.servoce-area-service .our-service-block:not(:last-child){
  padding-bottom: 40px;
}
.service-area-subtext{
  font-size: 20px;
  font-weight: 500;
}
.servoce-area-service a{
  color: var(--bs-text-blue);
}
.page-id-590 .local-expertises.flexiblecontent  ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0px; 
  padding-left: 0;
  list-style: none;
  margin: 0;
  flex-direction: row;
}

.page-id-590 .local-expertises.flexiblecontent ul li {
  min-width: calc(50% - 0px) !important; /* two columns with gap */
  max-width: 50%;
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
}

.page-id-590 .local-expertises.flexiblecontent  li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url('/wp-content/uploads/2025/07/check.png');
  background-size: contain;
  background-repeat: no-repeat;
}
@media(max-width: 575px){
  .page-id-590 .local-expertises.flexiblecontent  ul li {
    width: 100%; 
    }
}
/* ============================== */
/*           Service Page         */
/* ============================== */
.service-area-wrapper {
  background-color: #232323;
  padding-top: 70px;
  padding-bottom: 70px;
}
.areas_wrapper ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
.areas_wrapper ul li {
    flex: 0 0 calc(50% - 40px);
    width: calc(50% - 40px);
    list-style: circle;
    margin: 0 20px 10px;
    font-family: "Inter", sans-serif;
}
.areas_wrapper ul li a{
  font-family: "Inter", sans-serif;
  color: #FFF;
}
.areas_wrapper li::marker{
   color: #fff;
}
@media (min-width: 768px) {
    .areas_wrapper ul li {
        flex: 0 0 calc(33.333% - 40px);
        width: calc(33.333% - 40px);
    }
}
@media (min-width: 992px) {
    .areas_wrapper ul li {
        flex: 0 0 calc(25% - 40px);
        width: calc(25% - 40px);
    }
}
@media(max-width: 374px){
  .areas_wrapper ul li {
        flex: 0 0 100%;
        width: 100%;
    }
}
/* =============================== */
/*               404               */
/* =============================== */
.error_container{
  /* background-color: #232323; */
  padding-top: 70px;
  padding-bottom: 70px;
}
.error_container a{
  max-width: 250px;
  align-self: center;
  margin-top: 8px;
}
.error_container .error-code{
  font-size: 55px;
  line-height: 100%;
}
.error_container h5{
  font-weight: 600;
}
@media(max-width: 575px){
  .error_container .error-code{
    font-size: 40px;
  }
  .error_container h5{
    font-size: 20px;
  }
  .error_container a{
    margin-top: 0px;
  }
}
/* =stikcy-header= */
/* desktop */
#main-header.sticky {
  position: fixed;
  top: -100px; /* start hidden */
  left: 0;
  width: 100%;
  padding-top: 26px;
  z-index: 1000;
  background-color: rgba(26,26,26,0.95);
  box-shadow: 0 2px 8px rgba(26,26,26,0.1);
  animation: slideDownTop 0.6s ease forwards;
}

@keyframes slideDownTop {
  from { top: -100px; }
  to   { top: 0; }
}

/* mobilen */
@media (max-width: 991px) {
  #main-header.sticky {
    top: -40px;  
    padding: 14px 0;
    opacity: 0;
    animation: slideFadeMobile 0.5s ease forwards;
  }
  @keyframes slideFadeMobile {
    to {
      top: 0;      
      opacity: 1;
    }
  }
}
/* ======responsive navbar updates======== */
@media(max-width: 991px){
  .nav-link a {
    font-size: 20px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 20px;
  }
  .dropdown-item {
    font-size: 18px;
  }
}