@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*------------------------------------------------*/
/* Variable STYLES */
/*------------------------------------------------*/

:root {
    /* Color Palette */
    --color-h1: #111;  
    --color-h2: #333;  
    --color-h3: #0d3692;
    --color-text: #111;
    
    --color-link: #0d3692; 
    --color-hover:#666;  
    
    --color-hr-border: #0d3692;  
    
    --button-bg-link:#0d3692;  
    --button-bg-hover: #FFF;
    
    /* Typography */
    --font-family-base: "Open Sans", sans-serif;
    --font-family-heading: "Open Sans", sans-serif;
    --font-size-normal: 1rem;

    /* Top Level Menu */
    --color-topmenu-link: #EEE;
    --color-topmenu-hover:#FFF;
    --color-topmenu-border-link: 2px solid transparent;
    --color-topmenu-border-hover: 2px solid #d8d2b3;

    --font-size-topmenu: 20px;
    --background-color-up: transparent;
    --background-color-down: transparent;
    --font-weight-topmenu: 400;



/*------------------------------------------------*/
/* Feature Box – Global Overrides */
/*------------------------------------------------*/

 /* Overlay (hover) */
 --feature-overlay-bg-start: rgba(0, 140, 190, 0.85);
--feature-overlay-bg-end: rgba(0, 169, 225, 0.95);
  --feature-overlay-opacity: 1;

  /* Overlay Typography */
  --feature-title-color: #ffffff;
  --feature-title-size: clamp(1.3rem, 2.2vw, 1.7rem);
  --feature-text-color: rgba(255,255,255,0.9);
  --feature-text-size: 0.95rem;
  --feature-text-line-height: 1.1;
  --text-align: left;

  /* Pre-hover Label */
  --feature-label-color: #ffffff;
  --feature-label-size: clamp(1.2rem, 2vw, 1.8rem);
  --feature-label-weight: 700;
  --feature-label-letter-spacing: 0.5px;
  --feature-label-bg-start: rgba(0,0,0,0.2);
  --feature-label-bg-end: rgba(0,0,0,0.45);
  --feature-label-border: 2px solid #00a9e1;

  /* CTA */
  --feature-cta-color: #ffffff;
  --feature-cta-hover-color: #ffffff;
  --feature-cta-bg: transparent;
  --feature-cta-bg-hover: transparent;
  --feature-cta-size: 0.95rem;
  --feature-cta-font-weight: 600;
  --feature-cta-padding: 0 1.25rem;
  --feature-arrow-shift: 6px;

  /* Motion */
  --feature-img-scale: 1.08;
  --feature-overlay-translate: 0;
  --feature-transition-speed: 0.45s;
  --feature-transition-ease: cubic-bezier(.2,.8,.2,1);

  /* Shape + Depth */
  --feature-radius: 0;
  --feature-hover-lift: 0;
  --feature-hover-shadow: 0 20px 40px rgba(0,0,0,.2);
}





/*------------------------------------------------*/
/* Global STYLES */
/*------------------------------------------------*/

a, a:link, a:visited, a:active {
    color:var(--color-link);
    text-decoration: none; 
	-webkit-transition:all ease .3s; 
	transition:all ease .3s;

}

a:hover {
        color:var(--color-hover); 
        text-decoration: none;
		-webkit-transition:all ease .3s; 
		transition:all ease .3s;
}

body {

}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin: 0 0 10px 0;
}

h1 {
    font-size: 34px;
	color:var(--color-h1);
	font-family: var(--font-family-heading);	
	font-weight:800;
}

h2 {
    font-size: 24px;
	color:var(--color-h2);
	font-weight:600;
	font-family: var(--font-family-base);
}

h3 {
    font-size: 20px;
    color:var(--color-h3);
	font-weight:400;
}

h4 {
    font-size: 18px;
    color: #111;
}

h5  {
    font-size: 14px;
    color: #111;
}

h6  {
    font-size: 13px;
    color: #666;
}

p {
    margin: 0 0 25px 0;
}

hr {
    clear: both;
    height: 0;
    border: var(--color-hr-border);
    border-width: 1px 0 0;
    margin: 20px 0 20px 0;
}

div, p {line-height:24px; font-size:16px;}

td {color:var(--color-text);padding:5px;line-height:18px; font-size:var(--font-size-normal);font-family: var(--font-family-base);}

ul li {
    font-size:var(--font-size-normal); 
	color:#222;
	margin-bottom: 8px;
	}

ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
	font-size:var(--font-size-normal); 
}

ol ol {
    margin-top: 8px;
    margin-left: 30px;
}

    ol ol li {
        list-style-type: lower-roman;
    }

    ol ol ol li {
        list-style-type: lower-alpha;
    }

ol ul li {
    list-style-type: lower-roman;
}


/*------------------------------------------------*/
/* Responsive Video and Image STYLE */
/*------------------------------------------------*/

img {
	max-width: 100%;
	height:auto;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}




.imglg{ transition: all .2s ease-in-out; }
.imglg:hover { transform: scale(1.02); }


.page-break-section {box-shadow:none !important;}


/* ==============================================
   CHEVRON (Custom Arrow for Dropdowns)
   ============================================== */


/* Prepare dropdown link for arrow positioning */
#dnnMenu .dropdown-toggle {
    position: relative;
    padding-right: 30px; /* Space for arrow */
}

/* Replace Bootstrap triangle */
#dnnMenu .dropdown-toggle::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform .25s ease;
    border-top: none;
    border-left: none;
}

/* Rotate arrow when open */
#dnnMenu li.show > .dropdown-toggle::after {
    transform: translateY(-50%) rotate(225deg);
}



/* ==============================================
   TOP LEVEL NAVIGATION (DESKTOP BASE)
   ============================================== */

#dnnMenu .topLevel {
    list-style: none;
    padding: 0;
    margin: 0;
}

#dnnMenu .topLevel > li {
    position: relative;
}

#dnnMenu .topLevel > li > a {
    text-transform: uppercase;
    padding: 8px 14px;
    margin: 0 8px;
    background: var(--background-color-up);
    color: var(--color-topmenu-link);
    border-bottom: var(--color-topmenu-border-link);
    transition: all .3s ease;
    font-size: var(--font-size-topmenu);
    font-weight: var(--font-weight-topmenu);
    font-family:var(--font-family-heading);
    display: inline-block;
}

/* Hover / Active / Open */
#dnnMenu .topLevel > li > a:hover,
#dnnMenu .topLevel > li > a:focus,
#dnnMenu .topLevel > li.active > a,
#dnnMenu .topLevel > li.show > a {
    color: var(--color-topmenu-hover);
    background: var(--background-color-down);
    border-bottom: var(--color-topmenu-border-hover);
}



/* ==============================================
   DESKTOP DROPDOWN STYLING
   ============================================== */

@media (min-width: 993px) {

    #dnnMenu .dropdown-menu {
        border-radius: 0;
        background: #f5f5f5;
        padding: 0;
        margin-top: 0;
        border: none;
        min-width: 220px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    #dnnMenu .dropdown-menu li {
        border-bottom: 1px solid #e1e1e1;
    }

    #dnnMenu .dropdown-menu li:last-child {
        border-bottom: none;
    }

    #dnnMenu .dropdown-menu li > a {
        display: block;
        padding: 10px 16px;
        color: #333;
        font-size: 15px;
        text-align: left;
        transition: background .2s ease, color .2s ease;
    }

    #dnnMenu .dropdown-menu li > a:hover {
        background: #e9e9e9;
        color: #111;
    }

}



/* ==============================================
   NAVBAR TOGGLER (Mobile Button)
   ============================================== */

.navbar-toggler {
    margin-bottom: 3px;
    margin-top: -120px; /* Adjust if needed */
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}



/* ==============================================
   MOBILE NAVIGATION (≤ 992px)
   ============================================== */

@media (max-width: 992px) {

    /* Stack menu vertically */
    #dnnMenu .topLevel {
        width: 100%;
        text-align: center;
    }

    #dnnMenu .topLevel > li {
        width: 100%;
        border-top: 1px solid rgba(0,0,0,.1);
    }

    /* Remove desktop underline styling */
    #dnnMenu .topLevel > li > a,
    #dnnMenu .topLevel > li.show > a,
    #dnnMenu .topLevel > li.active > a {
        border-bottom: none !important;
        background: transparent;
        margin: 0;
        padding: 14px 0;
        width: 100%;
        display: block;
    }

    /* Larger arrow for touch */
    #dnnMenu .dropdown-toggle::after {
        right: 18px;
        width: 10px;
        height: 10px;
    }

    /* Mobile dropdown container */
    #dnnMenu .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #eeeeee;
        border-top: 1px solid rgba(0,0,0,.1);
    }

    /* Center dropdown links */
    #dnnMenu .dropdown-menu li > a {
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,.05);
    }

    #dnnMenu .dropdown-menu li:last-child > a {
        border-bottom: none;
    }

}




/*------------------------------------------------*/
/* Global Button Styles */
/*------------------------------------------------*/


.MoreButton a:link, .MoreButton a:visited {
  padding: 18px 30px;
  text-align: center;
  color: var(--button-bg-link);
  font-size:20px;
  display: inline-block;  
  border:1px solid var(--button-bg-link);
  background:rgba(255,255,255,0.8);
  font-family: var(--font-family-base);
  margin:3px 0 3px 0;
  -webkit-transition:all ease .5s; 
  transition:all ease .5s;
}

.MoreButton a:hover, .MoreButton a:active {
  padding: 18px 30px;
  text-align: center;
  color: var(--button-bg-link);
  font-size:20px;
  display: inline-block;
  border:1px solid var(--button-bg-link);
  background:rgba(255,255,255,0.9);
  font-family: var(--font-family-base);
  margin:3px 0 3px 0; 
  -webkit-transition:all ease .5s; 
  transition:all ease .5s;
}



/*------------------------------------------------*/
/* Header STYLES */
/*------------------------------------------------*/

.menuwrap {padding:12px 0;background:#000;}
.logo {text-align:center;margin:0 auto;text-align:center;}
.menupad {padding-top:10px;}

/*------------------------------------------------*/
/* Main Content STYLES */
/*------------------------------------------------*/


.showcasewrap {
	background:transparent;
}

/*.showcasebkwrap {*//*background:linear-gradient(45deg,#015eea, #00c0fa,#015eea)*//*background:url('images/showcase-responsive_bg.webp') center center;width:100%;background-size:cover;padding:10% 0;}*/
.showcasebkwrap{

    background:
        linear-gradient(
            45deg,
            rgba(1,94,234,.85),
            rgba(0,192,250,.55),
            rgba(1,94,234,.85)
        ),
        url('images/showcase-responsive_bg.webp');

    background-size:cover;
    background-position:center;

    background-blend-mode:multiply;

    padding:6% 0;
}
.showcasetext {padding:20% 0 20% 0;text-align:center;}
.showcasetext h1 {color:#000;font-size:70px;font-weight:800;font-family:var(--font-family-heading);padding:15px 0;}
.showcasetext h3 {color:#0d3692;font-size:24px;font-weight:600;font-family:var(--font-family-base);padding-top:30px;}

.welcomewrap {background:#FFF;}

.mainwrap {padding:75px 0;background:#f7f8fa;}

.welcometext {text-align:left;}
.welcomeimg {margin-top:-150px;text-align:center;}
.welcometext h2 {color:#EEE;font-size:72px;font-weight:600;font-family:var(--font-family-heading);letter-spacing:1px;}
.welcometext h3 {color:#fd9a53;font-size:24px;font-weight:600;font-family:var(--font-family-base);}

.experiencewrap {background:#f7f8fa;}

/* ==========================================
   PLUMBING FEATURE BLOCK
   ========================================== */

.plumbing-feature-block{
    position:relative;
    overflow:hidden;
    background:#dfe5ec;
}

/* ==========================================
   IMAGE SIDE
   ========================================== */

.plumbing-feature-image{
    position:relative;
    height:100%;
    min-height:520px;
    overflow:hidden;
}

.plumbing-feature-image img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center center;

    display:block;
}

/* ==========================================
   CONTENT SIDE
   ========================================== */

.plumbing-feature-content{

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:70px 7%;

    background:#dfe5ec;
}

.feature-kicker{

    display:block;

    font-size:.85rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;

    color:#0f4c81;

    margin-bottom:18px;
}

.plumbing-feature-content h2{

    font-size:3rem;
    line-height:1.1;
    font-weight:800;

    margin-bottom:15px;

    color:#1e293b;
}

.plumbing-feature-content h4{

    font-size:1.4rem;
    line-height:1.4;
    font-weight:700;

    margin-bottom:30px;

    color:#0f4c81;
}

.plumbing-feature-content p{

    font-size:1.05rem;
    line-height:1.9;

    color:#475569;

    margin-bottom:22px;
}

/* ==========================================
   BUTTON
   ========================================== */

.plumbing-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:240px;
    height:62px;

    border-radius:100px;

    background:#343434;
    color:#fff;

    text-decoration:none;

    font-size:1rem;
    font-weight:700;
    letter-spacing:.08em;

    transition:all .25s ease;
}

.plumbing-btn:hover{

    background:#0f4c81;
    color:#fff;

    transform:translateY(-2px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media(max-width:991px){

    .plumbing-feature-image{
        min-height:350px;
    }

    .plumbing-feature-content{
        padding:50px 35px;
    }

    .plumbing-feature-content h2{
        font-size:2.3rem;
    }

}

@media(max-width:767px){

    .plumbing-feature-image{
        min-height:280px;
    }

    .plumbing-feature-content{
        padding:40px 25px;
    }

    .plumbing-feature-content h2{
        font-size:2rem;
    }

    .plumbing-feature-content h4{
        font-size:1.15rem;
    }

    .plumbing-btn{
        width:100%;
    }

}



/* ==========================================
   SERVICES SECTION
   ========================================== */

.plumbing-services-section{

    position:relative;
    padding:110px 0;

    background:#f7f8fa;
    background:#f7f8fa;
}


/* =========================================
   SERVICE AREA SECTION
========================================= */

.service-area-box{

    position:relative;

    padding:50px;

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #ffffff
        );

    border-radius:28px;

    overflow:hidden;

    box-shadow:
        0 18px 45px rgba(0,0,0,.06);
}

/* subtle bg accent */

.service-area-box::before{

    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:320px;
    height:320px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(2,132,199,.08),
            transparent 70%
        );
}

/* =========================================
   GRID
========================================= */

.service-area-grid{

    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:16px;
}

/* =========================================
   ITEM
========================================= */

.service-area-item{

    position:relative;

    padding:18px 18px 18px 52px;

    background:#fff;

    border:1px solid #e8eef5;

    border-radius:16px;

    font-weight:700;

    color:#1f2937;

    transition:.28s ease;

    box-shadow:
        0 4px 14px rgba(0,0,0,.04);
}

/* icon */

.service-area-item::before{

    content:"\f3c5";

    font-family:"Font Awesome 6 Free";
    font-weight:900;

    position:absolute;

    left:18px;
    top:50%;

    transform:translateY(-50%);

    color:#0284c7;

    font-size:1rem;
}



/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .service-area-grid{

        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }
}

@media(max-width:767px){

    .service-area-box{

        padding:32px 24px;
    }

    .service-area-grid{

        grid-template-columns:1fr;
    }

    .service-area-item{

        padding:16px 16px 16px 48px;
    }
}

/* ==========================================
   HEADER
   ========================================== */

.services-header{

    text-align:center;
    max-width:900px;

    margin:0 auto 70px;
}

.services-kicker{

    display:block;

    color:#0f4c81;

    font-size:3rem;
    font-weight:800;

    line-height:1.1;

    margin-bottom:18px;
}

.services-header h2{

    font-size:1.8rem;
    font-weight:700;

    margin-bottom:15px;

    color:#1f2937;
}

.services-header p{

    font-size:1.05rem;
    line-height:1.8;

    color:#64748b;
}

/* ==========================================
   FEATURED CARD
   ========================================== */

.featured-service-card{

    position:relative;

    overflow:visible;

    background:#fff;

    border-radius:24px;

    box-shadow:0 10px 35px rgba(0,0,0,.07);

    margin-bottom:40px;
}

.featured-service-image{

    position:relative;
    height:100%;
    min-height:480px;

    overflow:hidden;
}

.featured-service-image img{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* ==========================================
   CONTENT
   ========================================== */

.featured-service-content,
.service-card{

    position:relative;

    padding:65px 55px 45px;

    height:100%;

    background:#fff;
}

.service-label{

    display:block;

    font-size:.9rem;
    font-weight:700;
    letter-spacing:.04em;

    color:#64748b;

    margin-bottom:14px;
}

.featured-service-content h3,
.service-card h3{

    font-size:2.2rem;
    line-height:1.2;
    font-weight:800;

    margin-bottom:20px;

    color:#0f4c81;
}

.service-card h3{

    font-size:1.7rem;
}

.featured-service-content p,
.service-card p{

    font-size:1rem;
    line-height:1.9;

    color:#475569;

    margin-bottom:35px;
}

/* ==========================================
   ICON CIRCLE
   ========================================== */

.service-icon-circle{

    width:110px;
    height:110px;

    border-radius:100%;

    background:#0f4c81;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-top:-120px;
    margin-bottom:30px;

    box-shadow:0 12px 25px rgba(15,76,129,.25);
}

.service-icon-circle img{

    width:48px;
    height:48px;

    object-fit:contain;
}

/* ==========================================
   LOWER CARDS
   ========================================== */

.service-card{

    border-radius:24px;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    transition:all .25s ease;
}

.service-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* ==========================================
   ANIMATED ARROW
   ========================================== */

.service-arrow-link{

    display:inline-flex;
    align-items:center;
    gap:12px;

    text-decoration:none;

    font-size:.95rem;
    font-weight:700;
    letter-spacing:.05em;
    text-transform:uppercase;

    color:#111827;

    transition:all .25s ease;
}

.service-arrow{

    font-size:2rem;
    line-height:1;

    transition:transform .25s ease;
}

.service-arrow-link:hover{

    color:#0f4c81;
}

.service-arrow-link:hover .service-arrow{

    transform:translateX(8px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media(max-width:991px){

    .plumbing-services-section{
        padding:80px 0;
    }

    .services-kicker{
        font-size:2.2rem;
    }

    .featured-service-image{
        min-height:320px;
    }

    .featured-service-content,
    .service-card{
        padding:45px 35px 35px;
    }

    .service-icon-circle{

        width:90px;
        height:90px;

        margin-top:-90px;
    }

    .service-icon-circle img{
        width:40px;
        height:40px;
    }

}

@media(max-width:767px){

    .services-kicker{
        font-size:1.9rem;
    }

    .services-header h2{
        font-size:1.4rem;
    }

    .featured-service-content h3,
    .service-card h3{
        font-size:1.7rem;
    }

    .featured-service-content,
    .service-card{
        padding:40px 25px 30px;
    }

}


.pricing-highlight {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.price {
    font-size: 64px;
    font-weight: 700;
    color: #00a9e1;
    margin-bottom: 10px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-features li {
    font-size: 16px;
    margin-bottom: 10px;
}

.accredit-badge {
    display: inline-block;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    backdrop-filter: blur(6px);
}




/* ==========================================
   EXPERIENCE SECTION
   ========================================== */

.experiencetext {
    background: #f7f8fa;
    padding: 90px 0;
    position: relative;
}

.experiencetext .container {
    max-width: 1320px;
}

/* ==========================================
   MAIN IMAGE
   ========================================== */

.experiencetext .main-image img,
.experiencetext img.shadow {
    width: 100%;
    border-radius: 28px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,.12) !important;
    object-fit: cover;
}

/* ==========================================
   LEFT LOWER AREA
   ========================================== */

.experiencetext .bottom-info {
    margin-top: 40px;
    align-items: center;
}

.experiencetext .years-image img {
    max-width: 240px;
    width: 100%;
    display: block;
    border-radius: 28px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,.12) !important;
}

.experiencetext .license-block {
    display: flex;
    align-items: center;
    height: 100%;
}

.experiencetext .license-block h4 {
    font-size: 1.55rem;
    line-height: 1.5;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.experiencetext .license-block h4 strong {
    display: block;
    font-size: 2rem;
}

/* ==========================================
   RIGHT CONTENT
   ========================================== */

.experiencetext .content-wrap {
    padding-left: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.experiencetext h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 900;
    color: #2b2b2b;
    margin-bottom: 45px;
    letter-spacing: .02em;
}

/* ==========================================
   FEATURE LIST
   ========================================== */

.experiencetext ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experiencetext ul li {
    position: relative;
    padding-left: 48px;
    margin-bottom: 38px;
}

.experiencetext ul li:last-child {
    margin-bottom: 0;
}

/* Triangle Arrow */

.experiencetext ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 20px solid #004b8d;
}

/* Text */

.experiencetext ul li h4 {
    margin: 0;
    font-size: 2rem;
    font-weight: 400;
    color: #222;
    line-height: 1.4;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 991px) {

    .experiencetext {
        padding: 70px 0;
    }

    .experiencetext .content-wrap {
        padding-left: 0;
        margin-top: 50px;
    }

    .experiencetext h2 {
        margin-bottom: 35px;
    }

    .experiencetext ul li {
        margin-bottom: 28px;
    }

    .experiencetext ul li h4 {
        font-size: 1.5rem;
    }

    .experiencetext .license-block {
        margin-top: 25px;
    }
}

@media (max-width: 767px) {

    .experiencetext {
        padding: 55px 0;
    }

    .experiencetext h2 {
        font-size: 2rem;
    }

    .experiencetext ul li {
        padding-left: 40px;
    }

    .experiencetext ul li::before {
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 16px solid #004b8d;
        top: 7px;
    }

    .experiencetext ul li h4 {
        font-size: 1.2rem;
    }

    .experiencetext .years-image img {
        max-width: 200px;
        margin: 0 auto 25px;
    }

    .experiencetext .license-block {
        text-align: center;
        justify-content: center;
    }
}


/* =========================================
   GLOBAL SERVICE PAGE STYLES
========================================= */

.service-hero{
    color:#fff;
    text-align:center;
}

/* small top label */
.service-kicker{
    display:inline-block;
    margin-bottom:18px;

    font-size:.85rem;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;

    color:#0d3692;

    text-shadow:
        0 1px 2px rgba(0,0,0,.45),
        0 0 12px rgba(0,0,0,.25);
}

/* main heading */
.service-hero h1{
    font-size:clamp(2rem,5vw,3.2rem);
    font-weight:700;
    margin-bottom:25px;

    color:#fff;

    text-shadow:
        0 3px 10px rgba(0,0,0,.45),
        0 1px 2px rgba(0,0,0,.35);
}

/* lead text */
.service-hero .lead{
    max-width:850px;
    margin:0 auto;
    font-weight:bold;
    font-size:1.15rem;
    line-height:1.9;

    color:rgba(255,255,255,.95);

    text-shadow:
        0 2px 8px rgba(0,0,0,.45);
}

/* =========================================
   FEATURE SERVICE LIST
========================================= */

.service-feature-box{
    margin-top:40px;
    padding:35px;

    background:#f8fafc;

    border-left:4px solid #0284c7;
    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.service-feature-box h3{
    font-size:1.7rem;
    font-weight:700;
    margin-bottom:15px;
}

.feature-intro{
    color:#666;
    line-height:1.8;
    margin-bottom:28px;
}

.service-feature-list{
    list-style:none;
    padding:0;
    margin:0;
}

.service-feature-list li{
    position:relative;

    padding-left:28px;
    margin-bottom:16px;

    font-weight:600;
    color:#222;

    line-height:1.7;
}


/* =========================================
   CALL NOW BOX
========================================= */

.call-plumber-box{

    display:flex;
    align-items:center;
    gap:22px;

    margin-top:35px;
    padding:24px 28px;

    background:linear-gradient(
        135deg,
        #015591,
        #0284c7
    );

    border-radius:20px;

    box-shadow:
        0 18px 40px rgba(1,85,145,.22);

    transition:.3s ease;
}

.call-plumber-box:hover{

    transform:translateY(-4px);

    box-shadow:
        0 24px 50px rgba(1,85,145,.30);
}

/* ICON */

.call-icon{

    width:78px;
    height:78px;

    min-width:78px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(6px);

    font-size:2rem;
    color:#fff;
}

/* TEXT */

.call-content{

    display:flex;
    flex-direction:column;
}

.call-eyebrow{

    display:block;

    margin-bottom:8px;

    font-size:.82rem;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    color:rgba(255,255,255,.78);
}

.call-number{

    font-size:clamp(1.4rem,3vw,2rem);
    font-weight:700;

    color:#fff;
    text-decoration:none;

    line-height:1.2;

    transition:.3s ease;
}

.call-number:hover{

    color:#d9f2ff;

    text-decoration:none;
}

/* MOBILE */

@media(max-width:767px){

    .call-plumber-box{

        flex-direction:column;
        text-align:center;

        padding:28px 22px;
    }

    .call-content{

        align-items:center;
    }

    .call-number{

        font-size:1.5rem;
    }
}

/* custom bullet */
.service-feature-list li::before{
    content:"";

    position:absolute;
    left:0;
    top:10px;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#0284c7;

    box-shadow:
        0 0 0 4px rgba(2,132,199,.15);
}

/* =========================================
   SERVICE IMAGE
========================================= */

.service-image{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);
}

/* image */

.service-image img{

    width:100%;
    display:block;

    transition:transform .7s ease;
}

/* subtle zoom */

.service-image:hover img{

    transform:scale(1.04);
}

/* gradient overlay */

.service-image::after{

    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.55),
            rgba(0,0,0,.05) 45%,
            rgba(0,0,0,0)
        );

    pointer-events:none;
}

/* bottom text */

.service-image-overlay{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;

    padding:24px 28px;

    z-index:2;
}

.service-image-overlay span{

    display:inline-block;

    padding:10px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    font-size:.85rem;
    font-weight:700;

    letter-spacing:1.5px;
    text-transform:uppercase;

    text-shadow:
        0 2px 10px rgba(0,0,0,.45);
}

/* =========================================
   INTRO
========================================= */

.service-intro{
    padding:90px 0;
}

.service-content h2{
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:25px;
}

.service-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:24px;
}

.service-list{
    list-style:none;
    padding:0;
    margin:35px 0 0;
}

.service-list li{
    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:15px;

    font-weight:600;
}

.service-list i{
    color:#0284c7;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.service-highlights{
    padding:0 0 90px;
}

.highlight-card{
    background:#fff;
    padding:45px 35px;
    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    height:100%;

    transition:.3s ease;
}

.highlight-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.14);
}

.highlight-icon{
    width:90px;
    height:90px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#e0f2fe;

    font-size:2rem;
    color:#0284c7;
}

.highlight-card h3{
    margin-bottom:20px;
    font-size:1.5rem;
    font-weight:700;
}

.highlight-card p{
    color:#666;
    line-height:1.8;
}


/* =========================================
   CTA
========================================= */

.service-cta{
    padding:0 0 100px;
}

.cta-box{
    background:#0f1720;
    color:#fff;

    padding:70px 40px;

    border-radius:25px;
}

.cta-box h2{
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:20px;
    color:#fff;
}

.cta-box p{
    max-width:750px;
    margin:0 auto 35px;

    color:#fff;

    line-height:1.9;
}

.cta-box .MoreButton a{
    display:inline-block;

    padding:16px 34px;

    border-radius:50px;

    background:#0284c7;
    color:#fff;

    text-decoration:none;
    font-weight:700;

    transition:.3s ease;
}

.cta-box .MoreButton a:hover{
    background:#0369a1;
    transform:translateY(-3px);
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .service-hero{
        padding:90px 20px 70px;
    }

    .service-content h2,
    .cta-box h2{
        font-size:2rem;
    }

    .highlight-card{
        padding:35px 25px;
    }

}


/* =========================================
   CONTACT CARD
========================================= */

.plumbing-contact-card{

    display:flex;
    align-items:center;
    gap:40px;

    padding:45px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f7fbff
        );

    border-radius:28px;

    border:1px solid #e7eef5;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);
}

/* =========================================
   LOGO
========================================= */

.contact-card-logo{

    flex:0 0 320px;

    text-align:center;
}

.contact-card-logo img{

    width:100%;
    max-width:320px;

    height:auto;
}

/* =========================================
   CONTENT
========================================= */

.contact-card-content{

    flex:1;
}

.contact-kicker{

    display:inline-block;

    margin-bottom:14px;

    font-size:.8rem;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    color:#0284c7;
}

.contact-card-content h3{

    font-size:2.3rem;
    font-weight:700;

    margin-bottom:18px;

    color:#111827;
}

.contact-card-content p{

    margin-bottom:30px;

    font-size:1.05rem;
    line-height:1.9;

    color:#4b5563;
}

/* =========================================
   PHONE SECTION
========================================= */

.contact-phone-wrap{

    display:flex;
    align-items:center;
    gap:18px;
}

.contact-phone-icon{

    width:72px;
    height:72px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #015591,
            #0284c7
        );

    color:#fff;

    font-size:1.6rem;

    box-shadow:
        0 10px 25px rgba(2,132,199,.25);
}

.contact-phone-content span{

    display:block;

    margin-bottom:4px;

    font-size:.8rem;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    color:#6b7280;
}

.contact-phone-content a{

    font-size:2rem;
    font-weight:800;

    color:#015591;

    text-decoration:none;

    transition:.25s ease;
}

.contact-phone-content a:hover{

    color:#0284c7;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .plumbing-contact-card{

        flex-direction:column;

        text-align:center;

        padding:35px 28px;
    }

    .contact-phone-wrap{

        justify-content:center;
    }

    .contact-card-logo{

        flex:none;
    }
}

@media(max-width:767px){

    .contact-card-content h3{

        font-size:1.9rem;
    }

    .contact-phone-content a{

        font-size:1.6rem;
    }

    .contact-phone-wrap{

        flex-direction:column;
    }
}

/* =========================================
   ABOUT STAT GRID
========================================= */

.about-stat-grid{

    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:18px;

    margin-top:35px;
}

/* CARD */

.about-stat-card{

    padding:24px;

    background:#fff;

    border:1px solid #e9eef3;

    border-radius:18px;

    transition:.3s ease;
}

.about-stat-card:hover{

    transform:translateY(-4px);

    border-color:#0284c7;
}

/* ICON */

.about-stat-icon{

    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:18px;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            #015591,
            #0284c7
        );

    color:#fff;

    font-size:1.35rem;
}

/* TEXT */

.about-stat-card h4{

    font-size:1.1rem;
    font-weight:700;

    margin-bottom:10px;
}

.about-stat-card p{

    margin:0;

    color:#666;

    line-height:1.7;
}

/* =========================================
   MISSION BOX
========================================= */

.mission-box{

    margin-top:35px;

    padding:30px;

    border-left:5px solid #0284c7;

    background:#f8fafc;

    border-radius:18px;
}

.mission-box h3{

    margin-bottom:14px;

    font-size:1.5rem;
    font-weight:700;
}

.mission-box p{

    margin:0;

    line-height:1.9;

    color:#444;
}

/* MOBILE */

@media(max-width:767px){

    .about-stat-grid{

        grid-template-columns:1fr;
    }
}

/*------------------------------------------------*/
/* Footer Content STYLES */
/*------------------------------------------------*/

.footertopwrap {
	background: #f7f8fa;
	padding:15px 0;

}

.footerwrap {
    padding:15px 0;
	background:#f7f8fa;
}

/* ==========================================
   FOOTER CONTACT BLOCK
   ========================================== */

.footer-contact-block {
    background:#f0f5fb;
    padding: 70px 0;
}

.footer-contact-block .container {
    max-width: 1320px;
}

/* ==========================================
   LEFT COLUMN
   ========================================== */

.footer-branding {
    text-align: center;
    padding-right: 50px;
}

.footer-logo img {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.footer-phone {
    margin-top: 35px;
    font-size: 1.8rem;
    font-weight: 400;
    color: #222;
    letter-spacing: .01em;
}

.footer-phone a {
    color: #222;
    text-decoration: none;
    transition: all .25s ease;
}

.footer-phone a:hover {
    color: #004b8d;
}

/* ==========================================
   CENTER COLUMN
   ========================================== */

.footer-links {
    border-left: 1px solid rgba(0,0,0,.15);
    padding-left: 55px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 24px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    font-size: 1.5rem;
    font-weight: 400;
    color: #003f88;
    text-decoration: none;
    transition: all .25s ease;
    position: relative;
}

.footer-links ul li a:hover {
    color: #000;
    padding-left: 8px;
}

/* ==========================================
   RIGHT COLUMN
   ========================================== */

.footer-map {
    text-align: center;
}

.map-holder {
    overflow: hidden;
    border-radius: 4px;
}

.map-holder img {
    width: 100%;
    height: auto;
    display: block;
}

.map-caption {
    margin-top: 18px;
    font-size: 1.2rem;
    color: #222;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 991px) {

    .footer-contact-block {
        padding: 55px 0;
    }

    .footer-branding {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .footer-links {
        border-left: none;
        padding-left: 0;
        text-align: center;
        margin-bottom: 50px;
    }

    .footer-links ul li {
        margin-bottom: 18px;
    }

    .footer-phone {
        font-size: 1.5rem;
    }

    .footer-links ul li a {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {

    .footer-contact-block {
        padding: 45px 0;
    }

    .footer-logo img {
        max-width: 220px;
    }

    .footer-phone {
        font-size: 1.2rem;
    }

    .footer-links ul li a {
        font-size: 1.1rem;
    }

    .map-caption {
        font-size: 1rem;
    }
}

.login {color:#666;font-size:12px;}
.login li {color:#00a9e1;font-size:12px;}


a.login:link {color:#666; font-size:12px; text-decoration:none;}
a.login:visited {color:#666; font-size:12px; text-decoration:none;}
a.login:active {color:#ad9669; font-size:12px; text-decoration:none;}
a.login:hover {color:#00a9e1; font-size:12px; text-decoration:underline;}

.copyright {font-size: 12px;color: #666;text-align:center;}

a.copyright:visited {color: #666; font-size:12px; text-decoration:none;}
a.copyright:active {color: #666; font-size:12px; text-decoration:none;}
a.copyright:link {color: #666; font-size:12px; text-decoration:none;}
a.copyright:hover {color: #00a9e1; font-size:12px; text-decoration:underline;}

.wecontrol {
    text-align: center;
    font-size: 11px;
    padding-top: 10px; 
	color: #666;

}

.wecontrol ul { 

  margin:0;
  padding:0;
}

.wecontrol ul li { 
  display: inline; 
  color: #666; 
  margin:0;
  padding:0;
}

.wecontrol ul li a
{
   text-decoration: none;
   padding: 3px;
   color: #666;
}

.wecontrol ul li a:hover {
    color:#ad9669;
    text-decoration:underline;
}

/*------------------------------------------------*/
/* @media Display STYLES */
/*------------------------------------------------*/


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

    .footerlinks ul {
	list-style:none;
	margin:0 20px 0 0;
    border-left:none;
}

.footerlinks ul li {
	list-style:none;
	margin:0;
}


.footerlinks li { text-align:center;font-size:18px;padding-bottom:10px;}
}

/* Small Devices, Tablets */

@media only screen and (max-width : 768px) {

    .welcometext h2 {color:#EEE;font-size:48px;font-weight:600;font-family:var(--font-family-heading);}
    .showcasetext h1 {color:#EEE;font-size:50px;font-weight:600;font-family:var(--font-family-heading);line-height:.9; }
.showcasetext h1 span {color:#EEE;font-size:20px;font-weight:400;font-family:var(--font-family-base);display:inline-block;}


}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  
}


/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {

}

