* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif !important;
}

.topbar {
    background: linear-gradient(124deg, #980201 0 61.5%, #0C88D5 61.65% 100%);
    padding: 0;
    height: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1031;
    box-shadow: 0 5px 18px rgba(36, 42, 76, 0.18);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0));

}

.topbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 61.5%;
    margin-left: -16px;
    width: 34px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    transform: skewX(-34deg);
    transform-origin: top;

}

.topbar .container,
.topbar .row {
    height: 100%;
}

.topbar-info-text p {
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.topbar-info-text i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 12px;
}

.topbar-info-text i.me-2 {
    margin-right: 0 !important;
}

.topbar-info-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.topbar-info-text a:hover {
    color: rgba(255, 255, 255, 0.82);
}

.topbar-contact-wrap {
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.topbar-social-links ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
    justify-content: end;
    align-items: center;
}

.topbar-social-links ul::before {
    content: "Follow Us:";
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-right: 4px;
    white-space: nowrap;
}

.topbar-social-links li a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.topbar-social-links li a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.topbar-social-links li a i {
    color: #fff;
    font-size: 13px;
}

@media (max-width: 991px) {
    .topbar {
        height: auto;
        min-height: 50px;
        padding: 8px 0;
        background: linear-gradient(135deg, #980201 0 100%);
    }

    .topbar::after {
        display: none;
    }

    .topbar .row {
        gap: 8px;
    }

    .topbar-contact-wrap,
    .topbar-social-links ul {
        justify-content: center;
    }

    .topbar-social-links ul {
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .topbar-info-text p {
        font-size: 13px;
    }

    .topbar-social-links ul::before {
        display: none;
    }
}

.transparent-navbar {
    background: #fff !important;
    top: 50px;
    min-height: 76px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: top 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    z-index: 1030;
}

.transparent-navbar.scrolled {
    top: 0;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.navbar.fixed-top.scrolled {
    top: 0;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    transition: all.3s;
}

.dropdown-menu {
    max-height: 70vh;
    overflow-y: auto;
}

.dropdown-item:hover {
    background-color: #980201 !important;
    color: #fff !important;
}

.navbar {
    background-color: #fff !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

.navbar.fixed-top {
    top: 50px;
}

.nav-menu {
    gap: 25px;
}

.nav-link {
    font-weight: 600 !important;
    color: #000 !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    font-weight: 600 !important;
    color: #980201 !important;

}

.navbar-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
}

.navbar-toggler {
    border: 0 !important;
    box-shadow: none !important;
    padding: 0.35rem 0.5rem !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

footer {
    background-color: #000;
    position: relative;
    padding-top: 25px;
}

.footer-box h2 {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 17px;
    color: var(--s-white);
}

.footer-box p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}

.footer-box h3 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
}

.footer-box ul li {
    margin-bottom: 0.5rem;
}

.footer-box li a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: all.3s;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    transition: all.3s;

}

.footer-box a {
    text-decoration: none;
    color: #fff;
}

.footer-box ul li a:hover {
    color: #fff;
    letter-spacing: 1px;
    transition: all.3s;
}

.footer1stRow {
    padding: 2rem 0 1.5rem 0;
    position: relative;
    z-index: 1;
}

.socialmediaicon li a i {
    background-color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 8px;
    padding: 0;
    color: #980201;
    transition: 0.3s;
    border-radius: 100px;
}

.socialmediaicon ul {
    list-style: none;
    padding: 0;
}

.socialmediaicon ul li a i:hover {
    transform: rotate(360deg);
    background-color: #fff;
    color: #980201;
}

.SocialIcon h3 {
    font-size: 17px;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.copyRight {
    border-top: 1px solid #ffffff5b;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.copyRight a {
    color: #fff;
}

.copyRight p {
    color: #fff;
}

.button {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #980201;
    cursor: pointer;
    border: 2px solid var(--s-primary);
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.btn-txt {
    z-index: 10;
}

.type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: #000;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
}

.button:hover {
    box-shadow: 1px 1px 200px var(--s-white);
    color: #fff;
    border: none;
}

.type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
}

.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    --dot-x: 0px;
    --dot-y: 0px;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border: 1.5px solid #980201;
    border-radius: 50%;
    background-color: transparent;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s;
}

.cb-cursor::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: #980201;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: width 0.28s ease, height 0.28s ease, opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-cursor.is-idle::before {
    width: 18px;
    height: 18px;
    opacity: 0.35;
    transform: translate(-50%, -50%);
}

.hero-section {
    position: relative;
    margin-top: 76px;
    overflow: hidden;
}

.banner {
    min-height: 820px;
    height: 820px;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease;
    z-index: 0;
}

.slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 25%, rgba(152, 2, 1, 0.12), transparent 22%), linear-gradient(135deg, #0C88D59c 0%, #0a76b92b 35%, #085f9445 70%, rgba(152, 2, 1, 0.18) 100%);
}

.banner {
    position: relative;
    z-index: 1;
    padding: 150px 0 90px;
}

.banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #980201;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background-color: #980201;
}

.banner-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.04;
    margin-bottom: 22px;
    text-wrap: balance;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 32px;
}

.swiper-pagination {
    bottom: 28px !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #fff !important;
    opacity: 0.55 !important;
}

.swiper-pagination-bullet-active {
    width: 34px !important;
    border-radius: 999px !important;
    background: #980201 !important;
    opacity: 1 !important;
}

.btn-primary {
    position: relative;
    display: inline-block;
    padding: 16px 35px;
    color: #fff;
    background: #980201 !important;
    border: none !important;
    font-weight: 700 !important;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all.3s;
    border-radius: 0px !important;
}

.btn-primary::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 200%;
    left: 50%;
    top: 50%;
    background-color: #0C88D5 !important;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all.3s;
}

.btn-primary::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 25px;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary:hover::before {
    width: 120%;
}

.btn-primary:hover {
    color: #fff !important;
}

/* about us section */
.about-us {
    padding: 90px 0;
    background: linear-gradient(180deg, #f4f8fc 0%, #fff 100%);
}

/* .about-content {
    max-width: 480px;
} */

.about-content h3 {
    color: #980201;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.about-content h2 {}

.textt-secondary {
    color: #000;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-shadow: 5px 1px 2px #98020170;
}

.about-content p {
    color: #666a73;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.about-img-collage {
    position: relative;
    min-height: 535px;
    display: grid;
    grid-template-columns: 1fr 0.94fr;
    gap: 22px;
    align-items: center;
    padding-right: 42px;
}

.about-photo {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(12, 136, 213, 0.14);
}

.about-photo-large {
    height: 535px;
}

.about-photo-small {
    height: 445px;
    margin-top: 44px;
}

.about-img-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-experience-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 168px;
    height: 218px;
    border-radius: 80px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(17, 47, 78, 0.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px;
}

.about-experience-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #980201;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 14px;
}

.about-experience-card strong {
    color: #0C88D5;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.about-experience-card span:last-child {
    color: #000;
    font-size: 15px;
    line-height: 1.25;
    margin-top: 6px;
}

.what-we-do-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.what-we-do-body ul li {
    background-image: url(https://meltonsplumbingservice.com/wp-content/uploads/2026/06/icon-check.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 24px auto;
    line-height: 1.5em;
    margin-bottom: 20px;
    padding-left: 35px;
}

.what-we-do-body ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-content {
        max-width: 100%;
    }

    .about-img-collage {
        min-height: 480px;
        max-width: 680px;
        margin: 0 auto;
        padding-right: 30px;
    }

    .about-photo-large {
        height: 480px;
    }

    .about-photo-small {
        height: 395px;
    }

    .about-img-collage img {
        height: 100%;
    }

    .about-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .about-us {
        padding: 50px 0;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-feature-list ul {
        grid-template-columns: 1fr;
    }

    .about-content .btn-primary {
        min-width: 165px;
        padding: 12px 28px !important;
    }

    .about-img-collage {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 16px;
        padding-right: 0;
    }

    .about-photo,
    .about-photo-large,
    .about-photo-small {
        height: 310px;
        margin-top: 0;
        border-radius: 16px;
    }

    .about-img-collage img {
        height: 100%;
    }

    .about-experience-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: auto;
        border-radius: 18px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 14px;
        margin-top: 0;
    }

    .about-experience-icon {
        width: 58px;
        height: 58px;
        font-size: 23px;
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .about-experience-card strong {
        font-size: 36px;
    }
}

.textt-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #980201 !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.textt-primary::before {
    content: "";
    width: 14px;
    height: 2px;
    background: #0C88D5;
}

.textt-primary::after {
    content: "";
    width: 14px;
    height: 2px;
    background: #0C88D5;
}

.about-feature-list ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 26px;
    row-gap: 14px;
    margin-top: 24px;
}

.about-feature-list ul li {
    margin-bottom: 0;
    font-weight: 700;
    color: #980201 !important;
}

@media (max-width: 575px) {
    .about-feature-list ul {
        grid-template-columns: 1fr;
    }
}

/* services */
.services-section {
    position: relative;
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.services-section::before {
    position: absolute;
    content: "";
    background-image: url(https://meltonsplumbingservice.com/wp-content/uploads/2026/06/additional_img01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 20%;
    height: 85%;
    left: 5%;
    top: 0;
    z-index: 5;
}

.service-card {
    position: relative;
    min-height: 390px;
    min-height: 392px;
    height: 100%;
    background: #f7f9fc;
    padding: 84px 34px 30px;
    border: 1px solid rgba(12, 136, 213, 0.08);
    box-shadow: 0 18px 40px rgba(17, 47, 78, 0.06);
    padding: 86px 38px 30px;
    border: 1px solid rgba(12, 136, 213, 0.10);
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bg-shape {
    position: absolute;
    left: 0;
    top: 100px;
    width: 50%;
    height: 500px;
    background: #0C88D5;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: 0;
}

.faucet-image {
    position: absolute;
    left: 20px;
    top: 0;
    z-index: 5;
}

.faucet-image img {
    width: 280px;
}

.section-header {
    /* display: flex; */
    text-align: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    padding-left: 320px;
    z-index: 1;
}

.section-header h2 {
    font-size: 52px;
    font-weight: 700;
    color: #0f2d52;
}

.section-header p {
    /* max-width: 420px; */
    color: #000;
    font-weight: 600;
}

.subtitle {
    color: #0C88D5;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.servicesSwiper {
    padding-left: 320px;
}

.service-card {
    background: #f8f9fb;
    padding: 35px;
    min-height: 420px;
    transition: .3s;
    box-shadow: 0px 2px 5px 2px #98010152;
}

.service-card h3 {
    color: #980201;
    font-weight: 800;
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon {
    width: 80px;
    height: 80px;
    background: #0C88D5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon i {
    color: white;
    font-size: 30px;
}

.service-card h4 {
    color: #0f2d52;
    margin-bottom: 15px;
}

.service-card p {
    color: #777;
    margin-bottom: 20px;
}

.service-card ul {
    padding: 0;
    list-style: none;
}

.service-card ul li {
    margin-bottom: 12px;
    color: #0f2d52;
}

.service-card ul li::before {
    content: "→";
    color: #0C88D5;
    margin-right: 10px;
}

.swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.swiper-area {
    background-color: #fff;
}

/* ===================================
   RESPONSIVE SERVICES SECTION
=================================== */

@media (max-width: 1399px) {

    .services-section::before {
        width: 20%;
        height: 57%;
        left: 0%;
        top: 0px;
        z-index: 5;
    }
}

@media(max-width:1200px) {
    .services-section::before {
        display: none;
    }
}

@media(max-width:992px) {

    .section-header {
        /* display: flex; */
        text-align: center;
        justify-content: center;
        margin-bottom: 0;
        position: relative;
        padding-left: 10px;
        z-index: 1;
    }

    .bg-shape {
        width: 100%;
    }
}

/* about  */

.performance-process {
    background: #f7fbfd;
    padding: 100px 0;
}

.process-shell {
    align-items: stretch;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.process-visual {
    min-height: 560px;
    overflow: hidden;
    position: relative;
}

.process-visual img {
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    width: 100%;
}

.process-visual::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgb(26 26 26 / 57%));
    content: "";
    inset: 0;
    position: absolute;
}

.process-note {
    bottom: 32px;
    color: #fff;
    left: 32px;
    max-width: 330px;
    position: absolute;
    z-index: 1;
}

.process-note span,
.process-heading span,
.process-step span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.process-note span {
    color: #980201;
    margin-bottom: 10px;
}

.process-note strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.04;
}

.process-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-heading {
    margin-bottom: 34px;
    max-width: 680px;
}

.process-heading span {
    color: #224b62;
    margin-bottom: 12px;
}

.process-heading h2 {
    color: #000;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: 18px;
}

.process-heading p {
    color: #536176;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.process-steps {
    display: grid;
    gap: 18px;
}

.process-step {
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(34, 75, 98, 0.1);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    display: flex;
    gap: 20px;
    padding: 26px 28px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.process-step:hover {
    border-color: rgba(34, 75, 98, 0.22);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
    transform: translateY(-4px);
}

.step-icon {
    align-items: center;
    background: #980201;
    color: #fff;
    display: inline-flex;
    flex: 0 0 58px;
    font-size: 22px;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.process-step span {
    color: #6f8795;
    margin-bottom: 7px;
}

.process-step h4 {
    color: #000;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.process-step p {
    color: #536176;
    line-height: 1.65;
    margin: 0;
}

@media(max-width:992px) {
    .performance-process {
        padding: 80px 0;
    }

    .process-shell {
        gap: 36px;
        grid-template-columns: 1fr;
    }

    .process-visual,
    .process-visual img {
        min-height: 420px;
    }
}

@media(max-width:767px) {
    .performance-process {
        padding: 60px 0;
    }

    .process-visual,
    .process-visual img {
        min-height: 340px;
    }

    .process-note {
        bottom: 24px;
        left: 24px;
        right: 24px;
    }

    .process-step {
        gap: 16px;
        padding: 22px 18px;
    }

    .step-icon {
        flex-basis: 50px;
        height: 50px;
        width: 50px;
    }

    .process-step h4 {
        font-size: 21px;
    }
}

/* process */
.plumbing-process-image {
    width: 90px;
    height: 90px;
    background: rgba(12, 136, 213, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plumbing-process-image i {
    font-size: 42px;
    color: #980201;
    transition: transform 0.6s ease;
}

.plumbing-process-box {
    padding: 30px;
    position: relative;
}

.plumbing-process-box:hover .plumbing-process-image i {
    transform: rotateY(360deg);
}

.plumbing-process-work {
    position: relative;
    border-radius: 50%;
    padding: 90px;
    height: 270px;
    width: 270px;
}

.plumbing-process-work::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 4px;
    border-radius: 50%;
    background: linear-gradient(280.36deg, transparent 20.42%, #980201);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.plumbing-process-content h3 {
    color: #980201;
    margin-top: 25px;
}

.plumbing-process-box1::before {
    content: "";
    position: absolute;
    background-image: url(https://meltonsplumbingservice.com/wp-content/uploads/2026/06/shape.png);
    background-repeat: no-repeat;
    right: 0;
    width: 100px;
    top: 0;
    height: 20px;
    background-size: cover;
}

.plumbing-process-box2 {
    position: relative;
}

.plumbing-process-box2::before {
    content: "";
    position: absolute;
    background-image: url(https://meltonsplumbingservice.com/wp-content/uploads/2026/06/shape-two.png);
    background-repeat: no-repeat;
    right: 0;
    width: 100px;
    top: 260px;
    height: 20px;
    background-size: cover;
}

/* newsletter */
.newsletter {
    padding: 100px;
    text-align: center;
    background:
        radial-gradient(circle at 80% 25%,
            rgba(152, 2, 1, 0.12),
            transparent 22%),
        linear-gradient(135deg,
            rgba(12, 136, 213, 0.61) 0%,
            rgba(10, 118, 185, 0.17) 35%,
            rgba(8, 95, 148, 0.27) 70%,
            rgba(152, 2, 1, 0.18) 100%),
        url('https://meltonsplumbingservice.com/wp-content/uploads/2026/06/newsletter.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

/* testimonial */
.testimonmial {
    padding: 88px 0;
}

.testi {
    position: relative;
}

.testimonmial {
    margin-bottom: 48px;
}



/* .testimonmial-content h2 {
    color: #0C88D5;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
} */

.testimonial-swiper {
    padding: 0 0 30px;
}

.testi::before {
    content: "";
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 48%;
    height: 188px;
    background: #980201;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.testimonial-card {
    /* min-height: 448px; */
    height: 100%;
    padding: 76px 11%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(120deg, transparent 0 56%, rgba(255, 255, 255, 0.06) 56% 66%, transparent 66% 100%),
        #0C88D5;
}

.testimonial-card h3 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 12px;
}

.testimonial-card span {
    font-weight: 700;
    margin-bottom: 34px;
}

.testimonial-card p {
    max-width: 680px;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 700;
    margin-bottom: 34px;
}

.testi-stars {
    color: #ffc107;
    letter-spacing: 3px;
}

.testimonial-img {
    width: 100%;
    height: 448px !important;
    object-fit: cover;
    /* filter: brightness(0.65) sepia(0.15) hue-rotate(178deg) saturate(1.25); */
}

.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
    top: auto;
    bottom: 0;
    width: 52px;
    height: 52px;
    color: #980201;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(7, 20, 67, 0.12);
}

.testimonial-swiper .swiper-button-prev {
    left: auto;
    right: 88px;
}

.testimonial-swiper .swiper-button-next {
    right: 30px;
}

.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 800;
}

.testimonial-swiper .swiper-pagination {
    display: none;
}

@media (max-width: 991px) {
    .testimonmial {
        padding: 70px 0;
    }

    .testimonial-card,
    .testimonial-img {
        min-height: auto;
        height: auto;
    }

    .testimonial-card {
        padding: 52px 28px;
    }

    .testimonial-img {
        max-height: 360px;
    }
}

@media (max-width: 575px) {
    .testimonmial-content h2 {
        font-size: 30px;
    }

    .testimonial-card::before {
        display: none;
    }

    .testimonial-card h3 {
        font-size: 26px;
    }

    .testimonial-card p {
        font-size: 15px;
    }
}

/* faq main */
.fq-section {
    padding: 90px 0 0;
    background: #fff;
    overflow: hidden;
}

.fq-section .row {
    row-gap: 40px;
}

.fq-target {
    position: relative;
    min-height: 620px;
}

.fq-target img {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: auto;
    max-width: 118%;
    height: 100%;
    object-fit: contain;
    transform: translateX(-50%);
}

.faq-content-wrap {
    max-width: 560px;
    padding: 0 0 110px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.fq-section .titleBar h6 {
    color: #0C88D5;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
}


.fq-section .titleBar p {
    color: #666a73;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 28px;
}

.fq-section .accordion-item {
    background: transparent;
    border-bottom: 1px solid rgba(1, 43, 93, 0.12) !important;
    border-radius: 0;
    margin: 0 !important;
    overflow: visible;
}

.fq-section .accordion-button {
    color: #980201 !important;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    background: transparent !important;
    border: 0;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 23px 44px 23px 0;
}

.fq-section .accordion-button:not(.collapsed) {
    color: #980201 !important;
    background: transparent !important;
}

.fq-section .accordion-button::after {
    content: "+";
    position: absolute;
    right: 6px;
    top: 50%;
    width: auto;
    height: auto;
    color: #980201;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    background-image: none;
    transform: translateY(-50%);
}

.fq-section .accordion-button:not(.collapsed)::after {
    content: "-";
    background-image: none;
    transform: translateY(-50%);
}

.fq-section .accordion-body {
    color: #666a73;
    font-size: 16px;
    line-height: 1.7;
    background: transparent;
    border: 0;
    padding: 0 44px 22px 0;
}

@media (max-width: 991px) {
    .fq-section {
        padding: 76px 0 0;
    }

    .fq-target {
        min-height: 460px;
    }

    .fq-target img {
        max-width: 100%;
    }

    .faq-content-wrap {
        max-width: 100%;
        padding-bottom: 70px;
    }

    .fq-section .titleBar h3 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .fq-target {
        min-height: 330px;
    }

    .faq-content-wrap {
        padding-bottom: 50px;
    }

    .fq-section .titleBar h3 {
        font-size: 30px;
    }

    .fq-section .titleBar p,
    .fq-section .accordion-body {
        font-size: 15px;
    }

    .fq-section .accordion-button {
        padding: 18px;
    }
}

/* contact */
.contact-behind {
    background: linear-gradient(135deg, #980201);
    /* border: 1px solid rgba(214, 175, 63, 0.42); */
    border-radius: 42px;
    margin: 0px 100px 40px 100px;
    overflow: hidden;
    padding: 60px 0;
}

.content4 img {
    background: #0C88D5;
    border-radius: 8px;
    padding: 16px;
    width: 58px;
}

.contactUSPage {
    background: #fff;
    border-top: 5px solid #980201;
    border-radius: 15px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16) !important;
    padding: 50px 20px;
    position: relative;
}

.content5 {
    padding-left: 14px;
}

.content5 h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.content5 h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0;
}

.content5 h3 a {
    color: inherit;
}

.contact-content {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 18px;
}

.contact-section .textt-primary {
    color: #fff !important;
}

.contact-section h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.contact-image-wrap {
    position: relative;
    isolation: isolate;
    max-width: 500px;
    width: 100%;
    padding: 18px;
}

.contact-image-wrap::before {
    content: "";
    position: absolute;
    inset: 9% 2% 4% 14%;
    background: #0C88D578;
    border-radius: 28px;
    transform: rotate(-4deg);
    z-index: -2;
}

.contact-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #0C88D5;
    border-radius: 30px;
    transform: rotate(3deg);
    z-index: -1;
}

.contact-image-wrap img {
    display: block;
    width: 100%;
    border: 8px solid rgba(255, 255, 255, 0.95);
    border-radius: 26px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-image-wrap:hover img {
    transform: translateY(-6px);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
}

.titleBar span {
    color: #980201;
    display: block;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 22px;
}

.form-label {
    color: #980201;
    font-weight: 700;
}

.form-control,
.form-select {
    background-color: #f8fafc !important;
    border: 1px solid rgba(7, 31, 77, 0.14) !important;
    color: #980201 !important;
    min-height: 55px;
}

.form-control:focus,
.form-select:focus {
    border-color: #980201 !important;
    box-shadow: 0 0 0 4px rgba(214, 175, 63, 0.18) !important;
}

.form-control::placeholder {
    color: #7a8494 !important;
}

option {
    background-color: #fff;
    color: #980201;
}

@media (max-width: 767px) {
    .contact-behind {
        border-radius: 24px;
        margin: 70px 5px;
        padding: 70px 0;
    }

    .contact-section {
        margin-bottom: 28px;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .contact-image-wrap {
        max-width: 420px;
        margin-top: 10px;
        padding: 12px;
    }

    .contact-image-wrap img {
        border-width: 6px;
        border-radius: 20px;
    }

    .titleBar span {
        font-size: 26px;
    }
}

/* about us page */
.other-banner {
    background-image: linear-gradient(rgb(0 0 0 / 58%), rgb(0 0 0 / 32%)), url(https://meltonsplumbingservice.com/wp-content/uploads/2026/06/other-banner.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-content {
    text-align: center;
    padding: 0 16px;
}

.new-content h3 {
    font-size: clamp(32px, 5vw, 55px);
    color: #fff;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 12px;
    overflow-wrap: anywhere;
}

.new-content .breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 6px;
    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    color: #fff !important;
    line-height: 1.4;
}

.breadcrumb-item a {
    color: #fff !important;
    font-weight: 700;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

@media (max-width: 767px) {
    .other-banner {
        height: 380px;
        background-attachment: scroll;
    }

    .new-content h3 {
        font-size: 34px;
    }

    .breadcrumb-item {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .other-banner {
        height: 320px;
    }

    .new-content h3 {
        font-size: 28px;
    }

    .new-content .breadcrumb {
        max-width: 100%;
    }
}

.about-page {
    padding: 100px 0;
}

.about-imgg {
    position: relative;
    border-radius: 25px;
    border: 5px solid #980201;
    overflow: hidden;
}

.about-imgg img {

    /* border: 5px solid #0C88D5; */
    overflow: hidden;
    transform: scale(1);
    transition: all.3s;
    width: 100%;
}

.about-imgg:hover img {
    transform: scale(1.1);
    transition: all.3s;
}

/* our mission */
.mission {
    width: 100%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0;
    background-image: linear-gradient(135deg, #980201, rgb(75 142 187 / 61%) 100%), url(https://meltonsplumbingservice.com/wp-content/uploads/2026/06/download.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.mission-content h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: 0.18em;
}

.mission-content h3 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.12;
}

.mission-content p {
    margin-top: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.85;
}

.mission-box {
    background-color: rgba(255, 255, 255, 0.96);
    margin-top: 0;
    min-height: 100%;
    margin-bottom: 0;
    padding: 34px 28px;
    gap: 10px;
    border-radius: 26px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.mission-box-content h3 {
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 25px;
    margin-top: 25px;
    letter-spacing: 1px;

}

.mission-box-content h5 {
    margin-top: 0;
    font-size: 14px;
    margin-bottom: 0rem;
    color: #5d7381;
    font-weight: 500;
    line-height: 1.7;

}

.work-para {
    text-align: center;
}

.process-box {
    min-height: 100%;
    background: #980201;
    color: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(251, 88, 106, 0.22);
}

.process-box h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fff;
    margin-bottom: 14px;
}

.process-box h2 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 18px;
    color: #fff;
}

.process-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.process-gap {
    padding: 90px 0;

}

.process-title-wrap {
    padding: 20px 0 42px;
}

.process-gap h3 {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
}

.step-box {
    height: 100%;
    padding: 38px 26px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 24px 55px rgba(251, 88, 106, 0.22);

}

.step-box:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 88, 106, 0.55);
    box-shadow: 0 28px 65px rgba(251, 88, 106, 0.16);
}

.step-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #980201, #0C88D5);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 16px 35px rgba(251, 88, 106, 0.22);
}

.step-box h4 {
    margin: 22px 0 12px;
    font-size: 22px;
    font-weight: 800;
}

.step-box p {
    margin: 0;
    line-height: 1.75;
}

@media(max-width:992px) {
    .process-box {
        padding: 36px 28px;
    }

    .process-gap {
        padding: 70px 0;
    }

    .process-title-wrap {
        padding-top: 18px;
    }
}

@media(max-width:767px) {
    .process-box {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .process-gap {
        padding: 60px 0;
    }

    .step-box {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .step-box h4 {
        font-size: 20px;
    }

    .step-icon {
        width: 66px;
        height: 66px;
        font-size: 24px;
    }
}

/* service detail page */
.services1 {
    position: relative;
    padding: 100px 0 82px;
    background: #fff;
    overflow: hidden;
}

.services1::before {
    content: "";
    position: absolute;
    right: -130px;
    top: 64px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(2, 150, 221, 0.08);
}

.services-content1 {
    position: relative;
    z-index: 1;
}

.services-content1 h3 {
    color: #980201;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
}

.services-content1 p,
.innerServicesPage p,
.accordion-body {
    color: #6d7280;
    font-size: 16px;
    line-height: 1.8;
}

.services-image {
    position: relative;
    padding: 22px;
}

.services-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 390px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 24px 55px rgba(36, 42, 76, 0.14);
}

.aboutSection {
    position: relative;
    padding: 90px 0;
    background: #f4f7fb;
}

.allServicesList {
    position: sticky;
    top: 110px;
}

.allServicesListBody {
    padding: 34px 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgb(204 18 18 / 16%);
}

.allServicesListBody h2,
.innerServicesPage h1,
.titleBar h3 {
    color: #980201;
}

.allServicesListBody h2 {
    font-size: 28px;
}

.revSite-btn {
    color: #980201;
    font-weight: 700;
    background: #f4f7fb;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.revSite-btn:hover,
.revSite-btn.active {
    color: #fff;
    background: #0C88D5;
    border-left-color: #980201;
}

.innerServicesPage {
    padding: 42px;
    background: #fff;
    box-shadow: 0 18px 45px rgb(204 18 18 / 16%);
}

.innerServicesPage h1 {
    font-size: 34px;
    line-height: 1.18;
    margin-bottom: 18px;
}

.innerServicesPage .what-we-do-body {
    margin-top: 18px;
    margin-bottom: 0;
}

.services1,
.services-image,
.allServicesList,
.innerServicesPage,
.FAQs-box,
.accordion-item {
    will-change: transform;
}

@media (max-width: 991px) {

    .services1,
    .aboutSection,
    .fq-section {
        padding: 70px 0;
    }

    .services-content1 h3,
    .innerServicesPage h1,
    .titleBar h3 {
        font-size: 30px;
    }

    .allServicesList {
        position: static;
    }
}

@media (max-width: 575px) {

    .services1,
    .aboutSection,
    .fq-section {
        padding: 56px 0;
    }

    .services-image {
        padding: 12px;
    }

    .services-image::before {
        transform: translate(8px, 8px);
    }

    .services-image img,
    .FAQs-box {
        min-height: 300px;
    }

    .innerServicesPage {
        padding: 28px 20px;
    }
}