.banner_service h1 {
    color: #fff;
    font-weight: 600;
}
.banner_service {
    color: #fff;
}

.banner_service {
    position: relative;
    z-index: 1;
    padding: 40px;
}

.banner_service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65); /* black overlay */
    z-index: -1;
    border-radius: 10px; /* optional */
    margin: 17px;
}

.banner_service h1,
.banner_service p {
    color: #fff;
    position: relative;
    z-index: 2;
}

.secont_content_section {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.secont_content_section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.secont_content_section p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.secont_content_section ul {
    padding-left: 0;
    margin: 25px 0;
}

.secont_content_section ul li {
    list-style: none;
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.secont_content_section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font-weight: bold;
}

.secont_content_section strong {
    color: #000;
}
.secont_content_section ul li{
    list-style: none !important;
}

.third_section_service {
    background: linear-gradient(135deg, #f7f7f7, #ececec);
    border-radius: 20px;
}

.third_section_crack h2 {
    font-size: 36px;
    font-weight: 700;
    color: #003c82;
    margin-bottom: 20px;
    line-height: 1.3;
}

.third_section_crack p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* TABLE STYLE */

.third_section_crack table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.third_section_crack table thead,
.third_section_crack table tr:first-child {
    background: #003c82;
}

.third_section_crack table th,
.third_section_crack table td {
    padding: 18px 20px;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.third_section_crack table tr:first-child td {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.third_section_crack table tr:not(:first-child) {
    transition: 0.3s ease;
}

.third_section_crack table tr:not(:first-child):hover {
    background: rgba(0,0,0,0.04);
    transform: scale(1.01);
}

.third_section_crack table tr:last-child td {
    border-bottom: none;
}

/* MOBILE */

@media(max-width:768px){

    .third_section_service {
        padding: 30px 15px;
    }

    .third_section_crack h2 {
        font-size: 26px;
    }

    .third_section_crack table td {
        padding: 14px;
        font-size: 14px;
    }
}
.fourth_section_service {
    background: #f8f8f8;
    padding: 70px 40px;
    border-radius: 24px;
}

/* IMAGE STYLE */

.fourth_section_service .wpb_single_image img {
    width: 100%;
    border-radius: 24px;
    transition: 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.fourth_section_service .wpb_single_image:hover img {
    transform: scale(1.03);
}

/* CONTENT BOX */

.fourth_section_service_text {
    background: #fff;
    padding: 2%;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

/* TOP ACCENT */

.fourth_section_service_text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #00599d;
}

/* TEXT */

.fourth_section_service_text h2 {
    font-size: 38px;
    line-height: 1.3;
    color: #333;
    margin-bottom: 20px;
}

.fourth_section_service_text h3,
.fourth_section_service_text b {
    color: #003c82;
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    display: block;
}

.fourth_section_service_text p {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
}

/* LISTS */

.fourth_section_service_text ul {
    padding-left: 0;
    margin-bottom: 13px;
}

.fourth_section_service_text ul li {
    list-style: none;
    position: relative;
    padding: 16px 18px 16px 55px;
    margin-bottom: 14px;
    border-radius: 14px;
    transition: 0.3s ease;
}

/* ICON */

.fourth_section_service_text ul li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: #fff;
    color: #00599d;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    font-weight: bold;
}

/* HOVER */

.fourth_section_service_text ul li:hover {
    background: #333;
    color: #fff;
    transform: translateX(8px);
}

.fourth_section_service_text ul li:hover::before {
    background: #fff;
    color: #003c82;
}

/* MOBILE */

@media(max-width:768px){

    .fourth_section_service {
        padding: 40px 15px;
    }

    .fourth_section_service_text {
        padding: 30px 20px;
        margin-top: 25px;
    }

    .fourth_section_service_text h2 {
        font-size: 28px;
    }

    .fourth_section_service_text h3,
    .fourth_section_service_text b {
        font-size: 20px;
    }
}

.forth_secomd_section {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* TITLE */

.forth_secomd_section h3 {
    font-size: 30px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* PARAGRAPH */

.forth_secomd_section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ORDERED LIST */

.forth_secomd_section ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.forth_secomd_section ol li {
    margin-bottom: 18px;
    color: #333;
    line-height: 1.7;
}

/* NUMBER STYLE */

.forth_secomd_section ol li::marker {
    font-weight: bold;
    color: #333;
}

/* BULLETS */

.forth_secomd_section ul {
    padding-left: 20px;
    margin: 10px 0 20px;
}

.forth_secomd_section ul li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* STRONG TEXT */

.forth_secomd_section b {
    color: #333;
}

/* MOBILE */

@media(max-width:768px){
    .forth_secomd_section {
        padding: 25px 18px;
    }

    .forth_secomd_section h3 {
        font-size: 22px;
    }
}
.fourth_section_service_text ul li
 {
    list-style: none !important;
}

.crack-injection-process {
    background: #fff;
    padding: 3%;
    border-radius: 18px;
    margin: 2%;
}

/* TITLE */

.crack-injection-process h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* PARAGRAPHS */

.crack-injection-process p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* STEP HEADINGS */

.crack-injection-process h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    padding-left: 14px;
}

/* LIST */

.crack-injection-process ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.crack-injection-process ul li {
    color: #444;
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
}



/* FINAL PARAGRAPH HIGHLIGHT */

.crack-injection-process p:last-child {
    margin-top: 25px;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 10px;
    color: #333;
}


/* MAIN SECTION */

.pricing_section {
    padding: 70px 40px;
    background: #f8f8f8;
    border-radius: 24px;
}

/* LEFT CONTENT */

.pricing_section h2 {
    font-size: 38px;
    line-height: 1.3;
    color: #333;
    margin-bottom: 20px;
}

.pricing_section p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/* BENEFITS LIST */

.pricing_section ul {
    padding-left: 0;
    margin: 25px 0;
}

.pricing_section ul li {
    list-style: none;
    position: relative;
    padding: 14px 18px 14px 50px;
    margin-bottom: 14px;
    background: #fff;
    border-radius: 14px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: 0.3s ease;
}

/* ICON */

.pricing_section ul li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    font-weight: bold;
}

/* HOVER */

.pricing_section ul li:hover {
    transform: translateX(6px);
    background: #333;
    color: #fff;
}

.pricing_section ul li:hover::before {
    background: #fff;
    color: #333;
}

/* PRICING CARD */

#vc-pricing-table-69ff580898a7f {
    background: #fff;
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* TOP BAR */

#vc-pricing-table-69ff580898a7f::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #333;
}

/* PLAN TITLE */

#vc-pricing-table-69ff580898a7f .wpb-plan-title {
    font-size: 30px;
    color: #333;
    margin-bottom: 10px;
}

/* DESCRIPTION */

#vc-pricing-table-69ff580898a7f .wpb-plan-description {
    color: #777;
    margin-bottom: 25px;
}

/* PRICE */

#vc-pricing-table-69ff580898a7f .wpb-price-container {
    margin-bottom: 30px;
}

#vc-pricing-table-69ff580898a7f .wpb-price {
    font-size: 42px;
    color: #333;
    font-weight: 700;
}

#vc-pricing-table-69ff580898a7f .wpb-period {
    color: #777;
    font-size: 15px;
}

/* BUTTON */

#vc-pricing-table-69ff580898a7f .vc_btn3 {
    background: #333 !important;
    border: none !important;
    color: #fff !important;
    padding: 14px 24px !important;
    border-radius: 10px !important;
    transition: 0.3s ease;
}

#vc-pricing-table-69ff580898a7f .vc_btn3:hover {
    background: #111 !important;
    transform: translateY(-3px);
}

/* CARD FEATURES */

#vc-pricing-table-69ff580898a7f ul {
    margin-top: 30px;
    text-align: left;
}

#vc-pricing-table-69ff580898a7f ul li {
    background: #f7f7f7;
    box-shadow: none;
}

/* MOBILE */

@media(max-width:768px){

    .pricing_section {
        padding: 40px 20px;
    }

    .pricing_section h2 {
        font-size: 28px;
    }

    #vc-pricing-table-69ff580898a7f {
        margin-top: 30px;
        padding: 30px 20px;
    }

    #vc-pricing-table-69ff580898a7f .wpb-price {
        font-size: 34px;
    }
}

/* MOBILE */

@media(max-width:768px){
    .crack-injection-process {
        padding: 25px 18px;
    }

    .crack-injection-process h2 {
        font-size: 26px;
    }

    .crack-injection-process h3 {
        font-size: 18px;
    }
}

.pricing_section ul li {
    list-style: none !important;
}
section.crack-types-section
 {
    padding: 3%;
    border-radius: 18px;
    margin: 2%;
}

.trust_section_main{
    padding:80px 20px;
    background:#f7f7f7;
}

.trust_section_main ul li{
    list-style:none !important;
    
}



/* LEFT & RIGHT BOX */
.trust_section .wpb_column{
    display:flex;
}

.foundation-prevention-section,
.related-services-section,
.trust-section{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:14px;
    padding:35px;
    margin-bottom:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:all .3s ease;
}

.foundation-prevention-section:hover,
.related-services-section:hover,
.trust-section:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* HEADINGS */
.foundation-prevention-section h2,
.related-services-section h2,
.trust-section h2{
    font-size:32px;
    line-height:1.3;
    color:#333;
    margin-bottom:20px;
    position:relative;
    padding-bottom:15px;
    font-weight:700;
}

.foundation-prevention-section h2:after,
.related-services-section h2:after,
.trust-section h2:after{
    content:"";
    width:70px;
    height:3px;
    background:#333;
    position:absolute;
    left:0;
    bottom:0;
}

/* TEXT */
.foundation-prevention-section p,
.related-services-section p,
.trust-section p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin-bottom:18px;
}

/* LIST */
.foundation-prevention-section ul,
.related-services-section ul,
.trust-section ul{
    margin:0;
    padding:0;
    list-style:none;
}

.foundation-prevention-section ul li,
.related-services-section ul li,
.trust-section ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:#444;
    line-height:1.7;
    font-size:15px;
}

/* CUSTOM ICON */
.foundation-prevention-section ul li:before,
.related-services-section ul li:before,
.trust-section ul li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#333;
    font-weight:bold;
    font-size:16px;
}

/* RIGHT TRUST BOX */
.trust-section{
    background:#333;
    color:#fff;
}

.trust-section h2,
.trust-section p,
.trust-section ul li{
    color:#fff;
}

.trust-section h2:after{
    background:#fff;
}

.trust-section ul li:before{
    color:#fff;
}

/* MOBILE */
@media(max-width:767px){

    .trust_section_main{
        padding:50px 15px;
    }

    .foundation-prevention-section,
    .related-services-section,
    .trust-section{
        padding:25px;
    }

    .foundation-prevention-section h2,
    .related-services-section h2,
    .trust-section h2{
        font-size:26px;
    }

}


.cta_button_sect{
    position:relative;
    overflow:hidden;
}



/* Heading */
.cta_button_sect h2{
    font-size:35px;
    color:#fff;
    font-weight:600;
}

/* Paragraph */
.cta_button_sect p{
    font-size:16px;
    color:rgba(255,255,255,0.88);
}

/* CTA Button */
.cta_button_sect .cta-btn{
    display:inline-block;
    background:#fff;
    color:#333;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    letter-spacing:.5px;
    transition:all .3s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.cta_button_sect .cta-btn:hover{
    background:#333;
    color:#fff;
    transform:translateY(-3px);
}

/* Optional decorative line */
.cta_button_sect h2:after{
    content:"";
    display:block;
    width:80px;
    height:3px;
    background:#fff;
    border-radius:10px;
    margin: auto;
}

/* Mobile */
@media(max-width:767px){



    .cta_button_sect h2{
        font-size:32px;
    }

    .cta_button_sect p{
        font-size:16px;
        line-height:1.8;
    }

    .cta_button_sect .cta-btn{
        width:100%;
        max-width:280px;
        padding:15px 20px;
    }
}







.pricing_left_section ul {
    border: none;
}
.pricing_left_section ul li {
    border: none !important;
}

.trust_section_main h4 {
    font-weight: 600;
}
.trust_section_main ul li {
    font-size: 16px !important;
}
.trust_section_main p{
        font-size: 16px !important;
}
.cta-badge {
    margin: auto;
}

.cta_button_sect #inspection-form {
    margin: 20px;
}

.service_last_section li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
}

.service_last_section li::before {
 content: "➜";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  background: #fff;
  color: #00599d;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.service_last_section ul li {
    list-style:none !important;
}
.table_section_new tr td {
    text-align: center;
}