@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");

:root {
    --font-body: "Poppins", sans-serif;
    --font-heading: "Roboto", sans-serif;
    --text-color: #000;
    --font-size-base: 16px;
    --line-height: 1.6;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--text-color);
    line-height: var(--line-height);
    overflow-x: hidden;
}

p,
li {
    font-size: 18px;
    font-style: normal;
}

p,
span,
a,
li,
label {
    font-family: var(--font-body);
}

input,
textarea,
button,
select {
    font-family: var(--font-body);
}

:is(h1, h2, h3, h4, h5, h6) {
    font-family: var(--font-heading);
}

section {
    padding: 45px 0px;
}

.section-title h1,
.section-title h2 {
    font-size: 40px;
    color: #283890;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    padding: 0 78px;
    text-transform: capitalize;
    font-weight: bold;
}

.section-title h1:after,
.section-title h2:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: #283890;
    height: 2px;
    width: 70px;
    transform: translate(0%, -50%);
}

.section-title h1:before,
.section-title h2:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background: #283890;
    height: 2px;
    width: 70px;
    transform: translate(0%, -50%);
}

.fill-button * {
    transition: 0.8s !important;
}

.fill-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #feec91;
    background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
    color: #000;
    padding: 10px 15px;
    border-radius: 11px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
    text-transform: capitalize;
    border: 0px;
    font-size: 18px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 8px;
}

.fill-button img {
    width: 100%;
    max-width: 25px;
}

.fill-button:hover img {
    transform: translateX(5px);
}

.red-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c70104;
    color: #fff;
    padding: 10px 15px;
    border-radius: 11px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 8px;
}

.red-button:hover {
    transform: translatey(-5px);
}

.red-button img {
    width: 100%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(47%) saturate(0%) hue-rotate(32deg) brightness(103%)
        contrast(102%);
    max-width: 25px;
}

.border-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 27px;
    border-radius: 11px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 8px;
    border: 2px solid #358ccc;
    color: #000;
    background: #495672;
    background: radial-gradient(circle, rgb(65 79 108) 0%, rgba(10, 21, 40, 1) 100%);
    background: #e2f0fb;
    background: radial-gradient(circle, rgba(226, 240, 251, 1) 0%, rgba(38, 131, 200, 1) 100%);
}

.border-button img {
    width: 100%;
    max-width: 25px;
}

.border-button:hover {
    transform: translatey(-5px);
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #feec91;
    background: radial-gradient(circle, rgb(247 226 116) 0%, rgba(254, 186, 8, 1) 100%);
    /* background: linear-gradient(180deg, #ffd860, #dca201); */
    color: #000;
    padding: 9px 20px;
    border-radius: 11px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 8px;
}

.direction-btn:hover {
    transform: translatey(-5px);
}

.direction-btn img {
    width: 100%;
    max-width: 28px;
}

.slick-dots {
    gap: 10px;
    bottom: 10px;
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    list-style: none;
}

.slick-dots li button:before {
    display: none !important;
}

.slick-dots li button {
    font-size: 0px;
    color: #fff;
    opacity: 1;
    height: 8px;
    border: 0px;
    width: 30px;
    background-color: #b4abab;
    border-radius: 0px;
}

.slick-dots li.slick-active button {
    background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
}

.site-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-site-logo a img {
    width: 100%;
    width: 255px;
}

header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: transparent;
    z-index: 12;
    transition: all 0.5s;
    padding-bottom: 15px;
}
header.site-header.fixed {
    position: fixed;
    z-index: 9999;
    background: #000;
}
header.site-header.fixed .top-bar {
    display: none;
}
header.site-header.fixed .main-site-logo a {
    position: relative;
}
header.site-header.fixed .main-site-logo a img {
    width: 100%;
    width: 180px;
}
.inner-page header.site-header.fixed  {
    padding-top: 5px;
    padding-bottom: 5px;
}
.right-navbar {
    display: flex;
    align-items: center;
    gap: 35px;
}

.right-navbar ul {
    list-style: none;
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0px;
}

.right-navbar ul li a {
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.right-navbar ul li a:hover {
    color: #c70104;
}

.right-navbar ul li a::before {
    height: 3px;
    position: absolute;
    width: 0%;
    transition: 0.7s;
    content: "";
    background: #c70104;
    bottom: -6px;
    left: 0px;
}

.right-navbar ul li a:hover::before {
    width: 100%;
}

/* .right-navbar ul li .a { position: relative; } .right-navbar ul li .a::after { height: 3px; position: absolute; width: 100%; content: ''; background: #F8B913; bottom: -6px; left: -3px; } .right-navbar ul li .a:hover::after { width: 100%; } */

.site-header .container {
    width: 100%;
    max-width: 100%;
}

.hero-section {
    padding: 0px;
}

.right-navbar {
    position: relative;
    /* left: 270px; */
}


.right-navbar::before {
    padding: 15px 25px 15px 25px;
    width: 108%;
    height: 62px;
    position: absolute;
    content: "";
    border-top-left-radius: 40px;
    z-index: -1;
    background-image: url('https://www.johnniescarwashonoak.com/wp-content/uploads/2026/04/shape.svg');
    background-repeat: no-repeat;
    background-size: cover;
    right: -15px;
}

/* .right-navbar::after {
    position: absolute;
    content: "";
    background-image: url(../images/freepik_br_2758c185-2ce7-4516-bb4d-fe8d64d8b82c.png);
    height: 62px;
    width: 100px;
    top: -18px;
    left: -36px;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    filter: brightness(0) saturate(100%) invert(82%) sepia(22%) saturate(4937%) hue-rotate(355deg) brightness(101%)
        contrast(99%);
}
header.site-header.fixed .right-navbar::after {
    top: -17px;
} */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: flex-start;
    /* max-width: 82%; */
    /* LEFT side */
}

.hero-overlay-text {
    max-width: 850px;
    text-align: left;
    color: #fff;
    position: relative;
    top: 50px;
    overflow: hidden;
    max-height: 270px;
}
.hero-overlay-text h1,
.hero-overlay-text h2 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    display: block;
    width: 100%;
    margin-inline: auto;
    margin-bottom: 10px;
}

.action-btn {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section::before {
    height: 100%;
    width: 100%;
    background: #000000;
    background: linear-gradient(67deg, rgba(0, 0, 0, 0.97) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    content: "";
}

.hero-section span {
    color: #000;
    font-weight: 700;
    font-family: "Caveat", cursive;
    position: relative;
    display: inline-block;
}
.hero-overlay-text h1 span::before,
.hero-overlay-text h2 span::before {
    background-image: url(../images/line.png);
    position: absolute;
    content: "";
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -11px;
    height: 20px;
    animation: pulseLine 1.5s ease-in-out infinite;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7480%) hue-rotate(107deg) brightness(100%)
        contrast(106%);
}

.hero-overlay-text h1 span::after,
.hero-overlay-text h2 span::after {
    clip-path: polygon(9% 0%, 100% 0%, 91% 99%, 0% 100%);
    /* background-color: #D62828; */
    background: #f8b913;
    position: absolute;
    content: "";
    height: 103%;
    width: 120%;
    inset: 0;
    z-index: -1;
    left: -7px;
    top: 2px;
    background: #feec91;
    background: radial-gradient(circle, rgb(247 226 116) 0%, rgba(254, 186, 8, 1) 100%);
}

.months-price {
    display: inline-block;
    font-size: 45px;
    width: max-content;
    margin-inline: auto;
    padding: 6px 5px;
    padding-left: 19px;
    margin-left: 9px;
    padding-right: 0px;
}

.months-price::before {
    left: 19px !important;
    width: 65px !important;
    bottom: -3px !important;
}

.months-price::after {
    height: 75% !important;
    width: 103% !important;
    left: 13px !important;
    top: 17px !important;
}

.hero-overlay-text p mark {
    background: transparent;
    color: #fff;
    font-family: "Caveat", cursive;
    font-size: 17px;
    padding-left: 0px;
}

.hero-overlay-text p {
    font-size:30px;
    font-family: "Caveat", cursive;
    font-weight: 600;
    text-transform: capitalize;
	line-height: 1.2;
}

@keyframes pulseLine {
    0%,
    100% {
        transform: scaleX(1);
        opacity: 0.9;
    }

    50% {
        transform: scaleX(1.1);
        opacity: 1;
    }
}

.last-bx .icon {
    border: 3px solid rgb(255, 0, 0) !important;
}

.last-bx .icon img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(99%) saturate(7324%) hue-rotate(0deg) brightness(107%)
        contrast(112%) !important;
}

.main-bx {
    position: relative;
}

.features-bar {
    display: grid;
    gap: 20px;
    padding: 0px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    max-width: 1300px;
    margin-inline: auto;
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1212;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    padding: 10px 24px;
    border-radius: 100px;
    position: relative;
    border: 1px solid #ffffff40;
    border-bottom: 4px solid;
    border-bottom: 2px solid #f4b400;
    background: radial-gradient(circle, rgb(65 79 108) 0%, rgba(10, 21, 40, 1) 100%);
    padding-left: 70px;
    background: #e2f0fb;
    background: radial-gradient(circle, rgba(226, 240, 251, 1) 0%, rgba(38, 131, 200, 1) 100%);
}

.feature-item span {
    font-size: 18px;
    text-transform: capitalize;
    width: max-content;
    font-weight: 600;
    color: #000;
}

/* Golden border glow */

.feature-item .icon {
    width: 62px;
    height: 62px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -2px;
    border: 3px solid #f4b400;
}

.feature-item .icon img {
    width: 100%;
    max-width: 38px;
    filter: brightness(0) saturate(100%) invert(16%) sepia(49%) saturate(3323%) hue-rotate(221deg) brightness(94%)
        contrast(89%);
}

.services-section .inner-card {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    text-align: center;
    background: #fff;
    padding: 10px;
    box-shadow: rgb(0 0 0 / 24%) 0px 5px 15px;
    border-radius: 20px;
}

.services-section .inner-card:hover {
    transform: translateY(-10px);
}

.services-section .main-card-grid * {
    transition: 0.7s;
}

.services-section .main-card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 40px 0px;
}

.services-section .card-image img {
    width: 100%;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0px 0px 18px 18px;
}

.services-section .card-text-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0px;
}

#Package-section {
    background: #f4f5fa;
}

.services-section {
    /* background: #F4F5FA; */
}

.Package-section .section-title span {
    color: #fab70f;
}

/* .Package-section { background-image: url(../images/29197.jpg); background-size: cover; background-position: center; background-position: center; position: relative; background-repeat: no-repeat; } .Package-section::before { height: 100%; width: 100%; background-color: #0000007e; inset: 0; position: absolute; content: ''; } */

.before-after .section-title h2 span {
    color: rgb(255, 0, 0);
}

.before-after .main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.review-slider .section-title h2 span {
    color: rgb(0 101 202) !important;
}

.icon-block {
    background: radial-gradient(circle, rgb(244 203 1) 0%, rgba(254, 186, 8, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.google-icon {
    display: none;
}

.review-slider .icon {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
    margin-top: 0px;
}

.review-slider .icon i {
    color: orange;
}

.bottom-bx p {
    text-align: center;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-size: 20px;
    line-height: 35px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 580px;
    margin-inline: auto;
    margin-bottom: 15px;
    margin-top: 0px;
    color: #2f2f2f;
    font-weight: 500;
}

.before-after .slick-dots {
    position: unset;
    margin-top: 25px;
    padding: 0;
}

.bottom-bx h5 {
    text-align: center;
    margin-bottom: 0px;
    font-size: 22px;
    text-transform: capitalize;
    color: rgb(47, 56, 144);
    font-weight: 600;
}

.icon-bx {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 17px;
    margin: 15px 0px;
    align-items: baseline;
    justify-content: center;
}

.icon-bx i {
    color: #000;
}

.icon-bx .icon {
    display: flex;
    gap: 5px;
    font-size: 18px;
}

.image-block img {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
    display: block;
}

.footer-container > .footer-col:nth-child(2) {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    position: relative;
    left: 0;
}

.footer-container > .footer-col:nth-child(2)::before {
    height: 100%;
    width: 2px;
    background-color: rgb(0 101 202);
    position: absolute;
    content: "";
    left: -7%;
}

.footer-container > .footer-col:nth-child(2)::after {
    height: 100%;
    width: 2px;
    position: absolute;
    content: "";
    right: -8%;
    top: 0px;
    background-color: rgb(0 101 202);
}

.footer-container > .footer-col:nth-child(1) {
    max-width: 100%;
}

.footer-container > .footer-col:nth-child(3) {
    width: 100%;
    position: relative;
    margin-left: auto;
}

.footer-container > .footer-col:nth-child(4) {
    width: 100%;
    max-width: 60%;
    margin-left: auto;
    position: relative;
}

footer .address-block {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 0px !important;
    margin-bottom: 20px !important;
}

.footer-col p {
    margin-bottom: 20px;
    margin-top: 20px;
}

.footer {
    background: rgb(245, 245, 245);
    padding: 70px 0px 0px;
}

.footer .footer-bottom .container p {
    color: #fff;
    margin: 0px;
}
.footer .footer-bottom .container p a {
    text-decoration: none;
    color: #fff;
}
.footer-logo img {
    width: 100%;
    max-width: 210px;
    margin-bottom: 20px;
    margin-inline: auto;
    display: block;
}

.footer-container {
    padding-bottom: 70px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, calc(33.333% - 35px));
    gap: 50px;
    justify-content: center;
}

.footer-col h4 {
    margin-bottom: 12px;
    text-transform: capitalize;
    font-size: 27px;
    color: #000;
    font-weight: 600;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 12121;
    width: max-content;
    margin-inline: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 0;
    margin-bottom: 0px;
}

.footer-col {
    position: relative;
    z-index: 1212;
}

.footer-col li i {
    color: #c70104;
    font-size: 20px;
    margin-right: 6px;
}

.add-border {
    position: relative;
}

.add-border::before {
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    border: 2px solid #0065ca;
    border-radius: 51px;
    top: 14px;
    z-index: -1;
    transform: rotate(0deg);
    left: 0;
    max-width: 100%;
    right: 0;
    margin-inline: auto;
}

.add-border2 {
    position: relative;
}

.add-border2::before {
    height: 100%;
    width: 100%;
    max-width: 100%;
    position: absolute;
    content: "";
    border: 2px solid #0065ca;
    border-radius: 51px;
    top: 14px;
    transform: rotate(0deg);
    z-index: -1;
    left: 0;
    margin-inline: auto;
    right: 0;
}

.add-border2 .mobile-link2 {
    margin-top: 22px;
}

.footer-col ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.add-border2 h4 {
    position: relative;
    left: -8px;
}

.footer-col ul li {
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
}

.small-text {
    font-size: 13px;
    margin-bottom: 15px;
    color: rgb(85, 85, 85);
}

.footer-col i {
    color: #fff;
    margin-top: 5px;
    font-size: 22px;
    margin-right: 10px;
}

.footer-bottom {
    padding: 10px 0px;
    text-align: center;
    /* background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%); */
}

.text-footer a {
    margin-inline: auto;
    display: block;
    width: max-content;
}

.footer-col .address-block li {
    display: flex;
    gap: 6px;
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    align-items: start;
}

.commercial-grid {
    display: grid;
    grid-template-columns: 525px 1fr;
    gap: 20px;
    justify-content: center;
    align-items: center;
    z-index: 116;
    position: relative;
}

/* .footer-bottom { background: rgb(40, 50, 119); padding: 15px 0px; } */


.commercial-grid .inner-grid h2 span {
    position: relative;
    color: #000;
    padding-left: 8px;
    display: inline;
    padding-right: 0px;
    margin-left: 5px;
}

.commercial-grid .inner-grid h2 span::after {
    clip-path: polygon(9% 0%, 100% 0%, 91% 99%, 0% 100%);
    position: absolute;
    content: "";
    height: 103%;
    width: 120%;
    inset: 0;
    left: -16px;
    top: 2px;
    background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
    z-index: -1;
}

.commercial-grid .inner-grid h2 {
    font-size: 40px;
    font-weight: 600;
    position: relative;
    color: #fff;
}

.commercial-grid p {
    margin: 15px 0px;
    color: #fff;
}

.commercial-section0 {
    position: relative;
    overflow: hidden;
}

.commercial-section0::after {
    position: absolute;
    content: "";
    background-image: url(https://www.johnniescarwashonoak.com/wp-content/uploads/2026/03/bg-3.jpg);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    inset: 0;
    background-size: cover;
    background-position: bottom;
}

.image-root img {
    width: 100%;
    max-width: 100%;
}

.commercial-section0::before {
    height: 100%;
    width: 100%;
    inset: 0;
    background: #000000;
    background: linear-gradient(67deg, rgba(0, 0, 0, 0.97) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    content: "";
    z-index: 12;
}

.hero-section::after {
    position: absolute;
    content: "";
    height: 169px;
    width: 100%;
    background: linear-gradient(to bottom, #000000 0%, #44444400 100%);
    top: 0;
}

.time-block {
    display: flex;
    gap: 10px;
}

.top-bar {
    display: flex;
    justify-content: end;
    margin-bottom: 34px;
    margin-top: 16px;
    gap: 15px;
    align-items: center;
    position: relative;
    right: 0;
}

.main-site-logo {
    position: relative;
}

.main-site-logo a {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(7%, -50%);
}

.time-block {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}



.cta-section2 {
    height: 450px !important;
}

.services-section {
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center;
}

.services-section .card-image {
    position: relative;
    overflow: hidden;
}
.overlay-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(40 56 144 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transform: translate(-100%);
	text-decoration:none;
}
.services-section .inner-card:hover .overlay-button {
    transform: translate(0%);
}
#Package-section {
    background-image: url("https://www.johnniescarwashonoak.com/wp-content/uploads/2026/04/bba.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

#Package-section .container {
    position: relative;
    z-index: 11;
}

#Package-section .section-title h2:after {
    background: #f4b400;
}

#Package-section .section-title h2 {
    color: #fff;
}

#Package-section .section-title h2:before {
    background: #f4b400;
}

#Package-section::after {
    position: absolute;
    content: "";
    height: 250px;
    width: 100%;
    background: linear-gradient(to bottom, #000000 0%, #44444400 100%);
    top: 0;
}

#Package-section .slick-dots li.slick-active button {
    /* background: #283890; */
}

#Package-section .slick-dots li button {
    background-color: #fff;
}

#Package-section .slick-dots {
    margin-top: 25px;
    position: unset;
    background: #0d1b2a;
    width: max-content;
    margin-inline: auto;
    padding: 10px 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    border-radius: 0px;
}

.slick-slide {
    padding: 0 15px;
    overflow: hidden;
}
#Package-section .slick-dots li button {
    background-color: #fff;
}


.price-block .line-bx {
    font-size: 18px;
    color: gray;
    padding: 0px 6px;
}

.section .fill-button {
    width: max-content;
    border: 0px;
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.section .section-title span {
    color: #f4b400;
}

:root {
    --blue: #283890;
    --gold: #f4b400;
    --dark: #0d1b2a;
    --card-bg: #ffffff;
    --text: #1a1a2e;
    --silver: #ffff;
}

.heading {
    text-align: center;
    margin-bottom: 44px;
}

.heading h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
}

.heading h1 span {
    color: var(--gold);
}

.heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.heading-line::before,
.heading-line::after {
    content: "";
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.heading-line::after {
    background: linear-gradient(to left, transparent, var(--gold));
}

.heading-line span {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

/* Cards grid */
/* .cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 55px 0px;
        } */

.card {
    border-radius: 18px;
    padding: 22px;
    position: relative;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    animation: cardIn 0.5s ease backwards;
    justify-content: space-between;
    margin: 0px;
    box-shadow: unset;
    margin-top: 50px;
    height: 555px;
    display: flex !important;
    justify-content: flex-start;
    max-width: 100%;
}

.card:nth-child(1) {
    animation-delay: 0.05s;
}

.card:nth-child(2) {
    animation-delay: 0.15s;
}

.card:nth-child(3) {
    animation-delay: 0.25s;
}

.card:nth-child(4) {
    animation-delay: 0.35s;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgb(0 0 0 / 8%);
}

/* Exterior – clean white */

.card.exterior {
    background: #fff;
}

/* Silver */

.card.silver {
    background: #283890;
    color: #fff;
}

/* Gold / Most Popular */

.card.popular {
    background: #fff;
    border: 3px solid var(--gold);
    box-shadow: 0 24px 60px rgb(245 196 0 / 6%);
    padding-top: 38px;
}

.card.popular:hover {
    transform: translateY(-20px);
}

/* Platinum */

.card.platinum {
    background: #0d1b2a;
    color: #fff;
}

/* Badge */

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    text-transform: uppercase;
    padding: 6px 21px;
    white-space: nowrap;
    font-size: 17px;
    letter-spacing: 0px;
    font-weight: 600;
    border-radius: 100px;
    background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
}

.card-label {
    font-size: 33px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.exterior .card-label {
    color: var(--blue);
}

.silver .card-label {
    color: var(--silver);
}

.popular .card-label {
    color: var(--gold);
}

.platinum .card-label {
    color: var(--gold);
}

.single-bx span {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 700;
    border-left: 1px solid #000;
    padding-left: 5px;
    margin-left: 10px;
}

.card.silver .single-bx span {
    border-left: 1px solid #fff;
}

.price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #c6c6c66e;
    padding-bottom: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.price-main {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    line-height: 0px;
    margin-right: 0px !important;
    margin: 19px;
    margin-left: 0px;
}

.price-main sup {
    font-size: 50px;
    display: inline-block;
    position: relative;
    top: -5px;
}

.exterior .price-main {
    color: var(--blue);
}

.silver .price-main {
    color: #fff;
}

.popular .price-main {
    color: var(--gold);
}

.platinum .price-main {
    color: #fff;
}

.price-suffix {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-left: 4px;
}

.price-monthly {
    font-size: 1.6rem;
    font-weight: 900;
    margin-top: 6px;
    margin-bottom: 18px;
}

.price-monthly span {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.65;
}

.silver .price-monthly {
    color: #fff;
}

.popular .price-monthly {
    color: var(--gold);
}

.platinum .price-monthly {
    color: #fff;
}

/* .divider {
            height: 1px;
            background: rgba(0, 0, 0, 0.1);
            margin: 16px 0;
        } */

.silver .divider,
.platinum .divider {
    background: rgba(255, 255, 255, 0.12);
}

.features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 22px;
    min-height: 64px;
    padding: 0px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 1px solid #ffffff08;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 25px;
    background: transparent !important;
    color: green !important;
}

.exterior .check {
    background: var(--blue);
    color: #fff;
}

.silver .check {
    background: var(--silver);
    color: #0d1b2a;
}

.popular .check {
    background: var(--gold);
    color: #000;
}

.platinum .check {
    background: var(--gold);
    color: #000;
}

.features li .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    margin: 0 2px;
}

/* Buttons */

.btn {
    display: block;
    width: 100%;
    padding: 13px 10px;
    border: none;
    border-radius: 10px;
    font-family: "Barlow", sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
}

.btn:hover {
    transform: scale(1.04);
    filter: brightness(1.1);
}

.btn:active {
    transform: scale(0.98);
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 18px rgba(26, 111, 212, 0.4);
}

.btn-dark {
    background: #1a2a3f;
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.btn-gold {
    background: var(--gold);
    color: #000;
    box-shadow: 0 4px 18px rgba(245, 196, 0, 0.45);
}

.btn-white {
    background: #fff;
    color: #0d1b2a;
    box-shadow: 0 4px 18px rgba(255, 255, 255, 0.15);
}

#Package-section .slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

.div-ba {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.ltx-after-header {
    font-weight: 7600;
    line-height: 1em;
    position: absolute;
    zoom: 1;
    -moz-opacity: 0.5;
    font-family: "Barlow", sans-serif;
    transition: all 0.5s;
    font-size: 22px;
    z-index: 121;
    opacity: 1;
    padding: 4px;
    background: #283890e3;
    color: #fff;
    clip-path: polygon(9% 0%, 100% 0%, 91% 99%, 0% 100%);
    padding-left: 12px;
    padding-right: 12px;
    top: 33px;
    right: 25px;
}

.ltx-before-header {
    background: #000000a8;
    width: max-content;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    padding: 0px 7px;
    position: relative;
    top: 64px;
    z-index: 121;
    left: 35px;
    clip-path: polygon(9% 0%, 100% 0%, 91% 99%, 0% 100%);
    padding-left: 12px;
    padding-right: 12px;
}

.ltx-wrap.init {
    margin-top: 0px;
}

.ltx-ba-wrap {
    position: relative;
    width: 100%;
    height: 331px;
    overflow: hidden;
    cursor: ew-resize;
    border-radius: 10px;
}

.ltx-ba-wrap .item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ltx-ba-wrap .before {
    width: 50%;
    z-index: 2;
    overflow: hidden;
}

.ltx-ba-wrap .after {
    z-index: 1;
}

.ltx-ba-before {
    display: none;
}

/* Slider handle */

.handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    left: 50%;
    margin-left: -25px;
    cursor: ew-resize;
    overflow: hidden;
    text-align: center;
    z-index: 5;
}

.handle::before {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 124%;
    left: 23px;
    background-color: #fff;
    transform: rotate(9deg);
    z-index: 1212;
    top: -24px;
}

.handle::after {
    position: absolute;
    top: 51%;
    left: 77%;
    margin-left: -25px;
    margin-top: -25px;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    content: "\f053\f054";
    letter-spacing: 12px;
    width: 35px;
    height: 35px;
    text-align: right;
    line-height: 51px;
    border-radius: 50%;
    color: #000;
    background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
    z-index: 121212;
    display: flex;
    align-items: center;
    justify-content: normal;
    left: 35px;
}

/* new css  */

.bottom-bx {
    margin-top: 71px;
}

.before-after .ba-container {
    position: relative;
    padding: 10px;
    border-radius: 20px;
}

.ba-container {
    position: relative;
}

.ba-container::before {
    height: 200px;
    width: 200px;
    position: absolute;
    content: "";
    background-image: url("https://www.johnniescarwashonoak.com/wp-content/uploads/2026/04/Group-135-1.png");
    z-index: 1111;
    background-size: contain;
    background-repeat: no-repeat;
    top: 0px;
    left: 2px;
}

.ba-container::after {
    height: 200px;
    width: 200px;
    position: absolute;
    content: "";
    background-image: url("https://www.johnniescarwashonoak.com/wp-content/uploads/2026/04/Group-135-1.png");
    z-index: 1111;
    background-size: contain;
    background-repeat: no-repeat;
    right: -2px;
    transform: scaleX(-1);
    top: 0;
}

.before-after .images-bx .section-title {
    width: max-content;
    background: #ebeef5;
    z-index: 1212;
    position: absolute;
    left: 108px;
    border-radius: 100px;
    border: 0px;
    padding-left: 14px;
    padding-right: 11px;
    top: 6px;
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 290px;
    overflow: hidden;
    cursor: ew-resize;
    padding: 10px !important;
    border-radius: 15px;
}

.ba-slider .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* AFTER (background) */

.ba-slider .after {
    background-image: url("https://www.johnniescarwashonoak.com/wp-content/uploads/2026/03/after-1.jpg");
}

/* BEFORE (clipped layer) */

.ba-slider .before {
    background-image: url("https://www.johnniescarwashonoak.com/wp-content/uploads/2026/03/before-1.jpg");
    clip-path: inset(0 50% 0 0);
    /* start from center */
    z-index: 2;
}

.handle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -7px;
    width: 16px;
    height: 16px;
    background: #f4b400;
    border-radius: 50%;
    transform: translateY(-50%);
}

.div-ba {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/*         
        .ltx-after-header {
            font-weight: 700;
            font-size: 80px;
            color: transparent;
            line-height: 1em;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
            position: absolute;
            zoom: 1;
            filter: alpha(opacity=50);
            -webkit-opacity: 0.5;
            -moz-opacity: 0.5;
            opacity: 0.5;
            font-family: "Barlow", sans-serif;
            bottom: 0;
            right: 0px;
            transition: all 0.5s;
        }
        
        .ltx-before-header {
            text-align: left;
            font-weight: 700;
            font-size: 80px;
            color: transparent;
            line-height: 1em;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
            position: absolute;
            zoom: 1;
            filter: alpha(opacity=50);
            -webkit-opacity: 0.5;
            -moz-opacity: 0.5;
            opacity: 0.5;
            font-family: "Barlow", sans-serif;
            margin: 0;
            transition: all 0.5s;
        } */

.ltx-wrap.init {
    padding: 75px 0;
}

.ltx-ba-wrap {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: ew-resize;
}

.ltx-ba-wrap .item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ltx-ba-wrap .before {
    width: 100%;
    z-index: 2;
    overflow: hidden;
}

.ltx-ba-wrap .after {
    z-index: 1;
}

.ltx-ba-before {
    display: none;
}

/* Slider handle */

.handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    left: 50%;
    margin-left: -25px;
    cursor: ew-resize;
    overflow: hidden;
    text-align: center;
    z-index: 5;
}

.handle::after {
    position: absolute;
    top: 51%;
    left: 77%;
    margin-left: -25px;
    margin-top: -25px;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    letter-spacing: 12px;
    width: 35px;
    height: 35px;
    text-align: right;
    line-height: 51px;
    border-radius: 50%;
    color: #000;
    background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
    background-image: url(https://www.johnniescarwashonoak.com/wp-content/uploads/2026/03/55232120748.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.before-after {
    background: #ebeef5;
}

.before-after strong {
    color: orange;
    font-size: 30px;
}

.revirew-image {
    width: 100%;
    position: relative;
}

.align-main-bx {
    text-align: end;
    width: 100%;
    display: flex;
    justify-content: center;
}

.images-bx {
    position: relative;
}

.ed-distribution-content {
    width: 100%;
    max-width: 562px;
}

.review-slider h2 {
    background: #ebeef5;
    z-index: 2;
    position: relative;
    left: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.review-slider {
    position: relative;
}

.review-slider .bottom-bx {
    margin-top: 30px;
}

.review-slider::before {
    height: 98%;
    width: 100%;
    position: absolute;
    content: "";
    border: 2px solid #0065ca;
    border-radius: 25px;
    top: 23px;
    z-index: 1;
    transform: rotate(0deg);
    left: 0;
    pointer-events: none;
}

.review-slider .section-title h2:after {
    display: none;
}

.review-slider::after {
    display: none;
}

.review-slider .section-title h2:before {
    display: none;
}

.bottom-bx p {
    background: #ebeef5;
}

.ed-distribution-section .section-title h2::before {
    display: none;
}

.ed-distribution-section .section-title h2::after {
    display: none;
}

.ed-distribution-section .section-title h2 {
    color: #f4b400;
    padding: 0px;
    margin-bottom: 17px;
}

.ed-distribution-section .section-title h2 span {
    position: relative;
    z-index: 1;
    color: #283890;
    margin-left: 6px;
    padding-left: 5px;
    padding-right: 5px;
}

.ed-distribution-section .section-title h2 span::after {
    clip-path: polygon(9% 0%, 100% 0%, 91% 99%, 0% 100%);
    position: absolute;
    content: "";
    height: 103%;
    width: 120%;
    inset: 0;
    left: -16px;
    top: 2px;
    background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
    z-index: -1;
}

.ed-distribution-section p {
    color: #fff;
}

.ed-distribution-section {
    background: #283890;
    padding: 80px 0px;
}

.ed-distribution-section {
    position: relative;
    overflow: hidden;
}

.ed-distribution-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    padding-left: 40px;
}

.ed-distribution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ed-distribution-image::before {
    position: absolute;
    content: "";
    width: 22px;
    z-index: 1212;
    background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
    height: 220%;
    transform: rotate(3deg);
    top: -472px;
    left: 39px;
}

.center-bx p {
    color: #fff;
}

.section-end ul li {
    font-weight: 500;
    background: radial-gradient(circle, rgb(247 226 116) 0%, rgba(254, 186, 8, 1) 100%);
    color: #000;
    padding: 6px 10px;
    line-height: 1.3;
}

.section-end ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
    margin: 20px 0px;
    padding: 0;
}

.section-end {
    position: relative;
}

.cta-text-center {
    position: relative;
}

.section-end .section-title h2 {
    color: #fff;
}

.section-end p {
    color: #fff;
}

.section-end {
    animation: 30s linear 0s infinite normal none running bg-marquee;
    min-height: 500px;
    display: flex;
    align-items: center;
    width: 100%;
    background-size: cover !important;
    /* background-attachment: fixed !important; */
    /* background-position: center !important; */
    /* background-repeat: no-repeat !important; */
}
@keyframes bg-marquee {
    0% {
        background-position: 0;
    }

    100% {
        background-position: -1190px;
    }
}

.section-end::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    inset: 0;
    background: #000000b3;
}

.cta-section .container {
    position: relative;
    z-index: 12;
}

.cta-section h1 {
    text-transform: capitalize;
    font-size: 66px;
    font-weight: 700;
    color: #fff;
    display: block;
    width: 100%;
    max-width: 700px;
    margin-top: 5px;
    margin-inline: auto;
    margin: 15px auto;
    line-height: 85px;
}

.cta-section span {
    color: #fff;
    font-weight: 700;
    font-family: "Caveat", cursive;
    position: relative;
    z-index: 141;
}

.cta-section h1 span::before {
    background-image: url(../images/line.png);
    position: absolute;
    content: "";
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -11px;
    height: 20px;
    animation: pulseLine 1.5s ease-in-out infinite;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7480%) hue-rotate(107deg) brightness(100%)
        contrast(106%);
}

.cta-section h1 span::after {
    clip-path: polygon(9% 0%, 100% 0%, 91% 99%, 0% 100%);
    position: absolute;
    content: "";
    height: 103%;
    width: 120%;
    inset: 0;
    left: -16px;
    top: 2px;
    z-index: -12;
    background: #c70104;
}

.cta-section .months-price {
    display: inline-block;
    font-size: 45px;
    width: max-content;
    margin-inline: auto;
    padding: 6px 5px;
    padding-left: 19px;
    margin-left: 9px;
    padding-right: 0px;
}

.cta-section .months-price::before {
    left: 19px !important;
    width: 65px !important;
    bottom: -3px !important;
}

.cta-section .months-price::after {
    height: 75% !important;
    width: 103% !important;
    left: 13px !important;
    top: 17px !important;
}

.cta-section h1 mark {
    background: transparent;
    color: #fff;
    font-family: "Caveat", cursive;
    font-size: 17px;
    padding-left: 0px;
}

.cta-section h1 strong {
    font-family: "Caveat", cursive;
}

@keyframes pulseLine {
    0%,
    100% {
        transform: scaleX(1);
        opacity: 0.9;
    }

    50% {
        transform: scaleX(1.1);
        opacity: 1;
    }
}

.cta-section::before {
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    inset: 0;
    background-color: #000000a1;
}

.cta-section {
    position: relative;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    display: grid;
    place-content: center;
    text-align: center;
    justify-content: center;
}

.results-section .main-gallry-grid {
    display: grid;
    margin: 45px 0px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.results-section .main-gallry-grid img {
    width: 100%;
}
.social-icon {
    display: flex;
    gap: 15px;
}
.social-icon a {
    display: flex;
    margin: 0;
    font-size: 20px;
    color: #283890;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transition: 0.3s;
    background: #fff;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}
.social-icon a img {
    max-width: 20px;
}

/* Facebook */

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 15px;
    flex-wrap: wrap;
    max-width: 70%;
}

.social-icon a:nth-child(1) img{
    filter: brightness(0) saturate(100%) invert(36%) sepia(80%) saturate(4875%) hue-rotate(208deg) brightness(104%) contrast(90%);
}

/* Instagram (gradient) */

/* .social-icon a:nth-child(2) {
    background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
} */

/* Twitter (X) */

/* .social-icon a:nth-child(3) {
    background: #000;
} */

/* Hover effect */

/* .social-icon a:hover {
    transform: translateY(-5px);
    opacity: 0.9;
} */

.footer-bottom {
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #283890;
}

.footer-bottom p {
    color: #000;
    margin: 0px;
    text-align: center;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
}

.mobile-link2 i {
    color: #c70104 !important;
    font-size: 20px;
}

.call-block {
    display: flex !important;
    gap: 15px;
    width: max-content;
    margin-inline: auto;
    margin-top: 15px;
}

.footer-col .red-button {
    width: 100%;
    max-width: max-content;
    margin-inline: auto;
    display: block;
    margin-top: 15px;
}

.footer-col i {
    color: #000000 !important;
}

.mobile-link2 {
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: #000;
}

.footer {
    background: #fff;
    background-image: url("https://www.johnniescarwashonoak.com/wp-content/uploads/2026/03/bg-3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.footer:after {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background: #ffffff;
    background: linear-gradient(0deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 1) 52%);
}

.inner-page header {
    position: absolute;
    padding-top: 10px;
    padding-bottom: 20px;
}
body:not(.home){
    margin-top: 138px;
}


.inner-banner.overlay-dark h1 {
    margin: 0 0 20px 0;
}

.icon-bx-wraper {
    border: 0px;
    position: relative;
    padding: 10px 15px;
    transition: all 0.2s;
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 15px;
    align-items: center;
    background: #ffffff;
    height: 100%;
}

.icon-bx-wraper .icon-bx a {
    color: #fff;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
}

.icon-bx-wraper .icon-bx {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 60px;
    font-size: 27px;
    color: #fff;
    background: radial-gradient(circle, rgb(247 226 116) 0%, rgba(254, 186, 8, 1) 100%);
    margin: 0px !important;
}

.icon-bx-wraper h5 {
    margin-top: 0;
    color: #000000;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 22px;
    margin-bottom: 2px;
}

.icon-content p {
    font-weight: 500;
    margin: 0;
}

.icon-content a {
    color: #020121;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
}

.contact-form-section {
    position: relative;
    background-attachment: fixed;
    background-image: url("https://www.johnniescarwashonoak.com/wp-content/uploads/2026/03/contact-us-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.input_field {
    width: calc(50% - 10px);
}

.cater_form {
    padding: 28px;
    border-radius: 0;
    box-shadow: 0 0 8px #857b7b42;
    outline-offset: -10px;
    background: #ffffffe6;
    outline: 5px solid #fad044e8;
    outline-offset: -5px;
}
.cater_form .section-title h2 {
    color: #000;
}

.limit_box span {
    font-weight: 500;
    font-size: 14px;
}

.Submit-Btn {
    width: 100%;
    margin-top: 15px;
}

.cater_form .input_field input,
.cater_form .textarea_field textarea,
.cater_form .input_field select {
    width: 100%;
    width: 100%;
    border-radius: 0px;
    padding: 11px;
    border: 1.9px solid #020121;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 16px;
    background-color: transparent;
    width: 100%;
    color: #020121;
}

.limit_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 15px;
}

/* Placeholder color */
.cater_form .input_field input::placeholder,
.cater_form .textarea_field textarea::placeholder,
.cater_form .input_field select::placeholder {
    color: #000;
    opacity: 1;
    /* Ensures full color in some browsers */
}

.textarea_field {
    width: 100%;
}

#message {
    height: 100px;
    display: block;
}

.cater_form form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 20px;
}

.inner-page section {
    padding: 65px 0px;
}

.inner-banner .section-title h1 {
    color: #fff;
}

.inner-page .time-block span {
    color: #000;
}
.home .time-block{
    color: #fff;
}
.home .time-block span{
    color: #feba08;
}

.map-block .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.map-block {
    padding: 0 !important;
}

.inner-page .main-site-logo a {
    transform: translate(0, -77%);
}

.inner-page .top-bar {
    margin-top: 0px;
}

.inner-banner.overlay-dark {
    background: #283890;
}

.inner-page .section-title h1:before,
.inner-page .section-title h2:before {
    display: none;
}

.inner-page .section-title h1:after,
.inner-page .section-title h2:after {
    display: none;
}

.inner-page .section-title h1,
.inner-page .section-title h2 {
    padding: 0px;
}

.page-inner-hero {
    background: #283890;
}

.page-inner-hero .section-title h1 {
    color: #fff;
    text-align: center;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 0;
}

.page-inner-hero .content-block {
    padding-top: 25px;
}

.content-block p {
    color: #fff;
}

.common-section-parallax {
    position: relative;
    background: #fff;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.section-end .center-text {
    margin-top: 15px;
    width: 100%;
    max-width: 758px;
    margin-inline: auto;
    text-align: center;
}

.common-section-parallax .text-block .section-title {
    margin-bottom: 15px;
}

.section-end {
    background: #fff;
}

.common-section-parallax::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    inset: 0;
    background: #fff;
}

/* .common-section-parallax::before {
    height: 100%;
    width: 100%;
    background: #000000;
    background: linear-gradient(67deg, rgba(0, 0, 0, 0.97) 0%, rgb(0 0 0 / 11%) 100%);
    position: absolute;
    content: '';
    inset: 0;
} */
.common-section-parallax .text-block {
    position: relative;
    width: 100%;
    text-align: center;
    margin-inline: auto;
    display: block;
    z-index: 12;
}

/* 
.common-section-parallax .section-title h1,
.common-section-parallax .section-title h2 {
    color: #fff;
} */

/* .common-section-parallax p {
    color: #fff;
} */

.thank-you-sec {
    background: #283890;
    color: #fff;
}
.section-title.text-white h2 {
    color: #fff;
}
.we-makes-sec ul.inline-list {
    margin-bottom: 15px;
}
.we-makes-sec .section-title,
.thank-you-sec .section-title {
    margin-bottom: 15px;
}
.list-style {
    gap: 5px 25px;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
}
.list-style li {
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}
.list-style :before {
    content: "";
    background: #283890;
    width: 15px;
    height: 15px;
    border-radius: 100px;
    border: 2px solid #ffffff;
    outline: 2px solid #283890;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 5px;
}
ul.inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 25px;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
}
ul.inline-list li {
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}
ul.inline-list li:before {
    content: "";
    background: #283890;
    width: 15px;
    height: 15px;
    border-radius: 100px;
    border: 2px solid #ffffff;
    outline: 2px solid #283890;
    display: inline-block;
    position: absolute;
    left: 4px;
    top: 5px;
}

.services {
    background: radial-gradient(circle, rgba(226, 240, 251, 1) 0%, rgba(38, 131, 200, 1) 100%);
}

.services .container {
    margin: auto;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.service-card {
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    background: #ffffff99;
    flex: 0 0 calc(33.33% - 17px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.service-card h2 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
    border-bottom: 1px solid #000000;
    padding-bottom: 15px;
}

.service-card p {
    color: #000;
    margin-bottom: 10px;
}

.service-card ul li {
    margin-bottom: 6px;
}

.sub-box {
    background: #f1f1f1;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid #192674bd;
}

.sub-box h4 {
    margin-bottom: 6px;
    font-size: 15px;
}

.cta-box {
    grid-column: 1 / -1;
    text-align: center;
    background: #222;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.cta-box h2 {
    margin-bottom: 10px;
}

.cta-box p {
    color: #ccc;
}
.we-makes-sec ul:not(.inline-list) {
    display: flex;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 0;
    row-gap: 50px;
}
.we-makes-sec ul:not(.inline-list) li {
    flex: 0 0 31%;
    position: relative;
}
.we-makes-sec ul:not(.inline-list) li:after {
    content: "";
    height: 100%;
    width: 1px;
    background: #28389033;
    right: -17px;
    position: absolute;
    top: 0;
}
.we-makes-sec ul:not(.inline-list) strong {
    display: block;
    font-size: 25px;
    text-transform: capitalize;
    color: #283890;
    font-weight: 600;
}
.we-makes-sec p{
    margin-top: 50px;
    font-weight: 600;
}

.we-makes-sec ul:not(.inline-list):nth-child(3):after {
    display: none;
}
.we-makes-sec ul:not(.inline-list) li:nth-child(5):after {
    display: none;
}
.page-id-142 .we-makes-sec ul:not(.inline-list) li:nth-child(4):after {
    display: none;
}
.page-id-142 #Package-section .card {
    height: auto;
    max-width: 100%;
    min-height: auto;
}
.page-id-142 .features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 1px solid #ffffff08;
    padding-bottom: 0;
    margin-bottom: 0;
}
.page-id-142 .card-label {
    line-height: 1.2;
    margin-bottom: 15px;
    font-size: 24px;
    text-transform: capitalize;
}
.page-id-142 .check {
    width: 14px;
    height: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
    background: transparent !important;
    color: #283890 !important;
}
.w-bottom-bx a {
    display: flex;
}
.washes-bx p {
    font-weight: 600;
    text-align: center;
    font-size: 15px;
    margin-bottom: 9px;
    text-transform: capitalize;
    background: #283890;
    color: #fff;
    border-radius: 100px;
    display: block;
    padding: 0 30px;
    margin-inline: auto;
    width: max-content;
}
.pkg-price-label {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 4px;
    flex: 0 0 100%;
    display: block;
    text-align: center;
}
.card.silver p.pkg-price-label {
    color: #fff;
}
.card.silver .check {
    color: #f4b400 !important;
}
.page-id-142 #Package-section .slick-list.draggable {
    height: auto;
}
#Package-section .container {
    width: 100%;
    max-width: 1400px;
}
.page-id-142 .we-makes-sec ul:not(.inline-list) {
    margin-inline: auto;
}

/* .page-id-142 .we-makes-sec ul:not(.inline-list) li:nth-child(2):after {
    display: none;
} */
.page-id-139 .we-makes-sec ul:not(.inline-list) li {
    flex: 0 0 48%;
    position: relative;
}
.page-id-139 .we-makes-sec ul:not(.inline-list) li:nth-child(2):after, .page-id-139 .we-makes-sec ul:not(.inline-list) li:nth-child(4):after {
    display: none;
}
.page-id-146 .we-makes-sec ul:not(.inline-list) li:nth-child(3):after {
    display: none;
}
.career-form-section {
    background-image: url("https://www.johnniescarwashonoak.com/wp-content/uploads/2026/04/banner-01-3.jpg");
    background-attachment: fixed;
    background-repeat: repeat;
    background-size: cover;
    animation: 30s linear 0s infinite normal none running bg-marquee;
    animation: 30s linear 0s infinite normal none running bg-marquee;
}

.review-box {
    border: 1px solid #28389036;
    margin-bottom: 15px;
    padding: 25px;
    text-align: left;
    background: #ffff;
}
.client-review-sliderr .bottom-bx {
    margin-top: 10px;
}
.client-review-sliderr  .bottom-bx h5 {
    margin-top: 15px;
    text-align: justify;
}
.client-review-sliderr i {
   color: orange;
}
.client-review-section {
    background: #f2f2f2;
}
.file-upload {
    width: 100%;
}

.file-upload label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.file-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px;
    background: #f9f9f9;
    position: relative;
}

.file-box input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.file-text {
    flex: 1;
    color: #777;
    font-size: 14px;
    padding-left: 10px;
}
.file-box button {
    background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
    color: #000000;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}
.file-box button:hover {
    background: #0056b3;
}
.career-form-section .section-title h2 {
    font-size: 25px;
}

.mobile-link {
    animation: floatUpDown 2s ease-in-out infinite;
}

.mobile-link,
.open-time {
    position: fixed;
    bottom: 69px;
    z-index: 1212;
    right: 0;
}

.mobile-link img {
    width: 100%;
    max-width: 220px;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    /* move up 15px */
    100% {
        transform: translateY(0);
    }
}

.mobile-link.custom-css {
    bottom: 69px;
}
.parallax-slider-blank {
    height: 450px;
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
	animation: 30s linear 0s infinite normal none running bg-marquee;
}
span.error {
    display: block;
    color: #fff;
    background: red;
    padding: 0 5px;
}



.services-list-new {
    background: #f2f2f2;
}
.services-list-new .section-title {
    margin-bottom: 50px;
}
.services-list {
    max-width: 1400px;
    margin-inline: auto;
}
.svc-row.wash {
    background: #fff;
}
.svc-row {
    display: grid;
    grid-template-columns: 48px 260px 1fr 320px;
    gap: 40px;
    align-items: start;
    padding: 50px;
    border-top: 1px solid #1c1c1c36;
    transition: background 0.2s;
    cursor: default;
}
.svc-row.wax {
    background: #fff;
}

.svc-num {
    font-size: 20px;
    letter-spacing: 0.12em;
    color: #000000;
    padding-top: 4px;
}

  /* name col */
  .svc-name-col {}

  .svc-tag {
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 2px;
    margin-bottom: 14px;
  }
 .svc-tag {
	color: #000000;
	background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
	border: 0.5px solid rgb(254 193 28);
}
.svc-name {
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #000;
    margin-bottom: 25px;
}
  .svc-desc {
    color: #000;
    line-height: 1.8;
    padding-top: 0;
  }

  /* points col */
	.svc-points {
		list-style: none;
		display: flex;
		flex-direction: column;
		gap: 11px;
		padding-top: 0;
		padding-left: 0;
	}

.svc-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.55;
    transition: color 0.15s;
    font-weight: 500;
}
.svc-points li::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 1px;
    background: #2e2e2e;
    margin-top: 14px;
    flex-shrink: 0;
    transition: width 0.2s, background 0.15s;
}
section#Package-section a.fill-button {
    width: auto;
}
.wash-package-inner {
    background: #f2f2f2;
}
.wash-package-inner .cardss {
    display: flex;
    column-gap: 15px;
    row-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.wash-package-inner .cardss .card {
    margin: 0;
    flex: 0 0 calc(33.33% - 15px);
}
.inner-banner.overlay-dark.contact_banner .container {
    max-width: 1400px;
}
.bg-light-grey {
    background: #f2f2f2f2;
}

.mobmenur-container {
    background: #283890;
}
.mob-menu-header-holder {
    height: 0 !important;
}
.mobile-top-buttons {
  display: none;
}
.mobmenur-container {
    padding: 6px 0px;
    border-radius: 5px;
}
.social-icon.mobile-social a {
    margin: 0;
}

.mobmenu-content li {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.mobmenu-content li a {
    font-family: inherit !important;
}
.show-panel .mob-cancel-button {
    background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
}

.mobile-top-buttons a {
    display: inline-block;
    padding: 10px 14px;
    margin: 0;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    border-radius: 0;
    width: 50%;
    text-align: center;
    font-weight: 600;
}

.book-btn {
  background-color: #e74c3c;
}
.contact-btn {
    background-color: #283890;
    color: #fff !important;
}
.private-policy-cn .section-title :is(h1,
h2,
h3,
h4,
h5,
h6) {
    color: #000;
    padding: 15px 10px;
    margin-bottom: 15px;
    font-size: 20px !important;
    letter-spacing: 0px;
    text-transform: capitalize;
    background: rgb(40 56 144 / 20%);
    border-left: 3px solid #283890;
    font-weight: 600;
    display: block;
}
.d-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.d-cards p {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}
.detailing-bottom-bx {
    background: rgb(255 255 255 / 90%);
    padding: 25px;
    text-align: center;
    margin-top: 25px;
    border-radius: 15px;
    max-width: 850px;
    margin-inline: auto;
}
.detailing-bottom-bx h3 {
    font-size: 20px;
    text-transform: capitalize;
    background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
    display: inline-block;
    padding: 4px 10px;
    color: #000;
    border-radius: 10px;
}
.detailing-bottom-bx h2 {
    line-height: 1.2;
    margin-bottom: 15px;
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
}
.detailing-bottom-bx p {
    text-transform: capitalize;
    font-weight: 500;
    margin: 0;
}
#Package-section .container {
    max-width: 1400px !important;
    width: 100% !important;
}
.social-icon.mobile-social {
    display:none;
}
.social-icon.mobile-social {
    padding-right: 35px;
    margin-right: 5px;
}

/* Show only on mobile */
@media (max-width: 1269px) {
	.social-icon.mobile-social {
		display: flex;
		gap: 5px;
	}
	.mobile-top-buttons {
		display: flex;
		justify-content: center;
		width: 100%;
		padding: 0;
		border-bottom: 1px solid #ddd;
		background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
	}
}


@media (max-width: 1400px) {
	.site-header .container {
		width: 100%;
		max-width: 1400px;
	}
}

@media (max-width: 1366px) {
    .before-after .images-bx .section-title {
        left: 89px;
    }
	
    .bottom-bx p {
        max-width: 480px;
    }


    .right-navbar {
        left: unset;
    }

    .site-header .container {
        max-width: 100%;
    }

    .main-site-logo a img {
        width: 275px;
    }

    .features-bar {
        max-width: 1106px;
    }

    #Package-section .container {
        width: 100%;
        max-width: 95%;
    }

    .before-after .section-title h2 {
        font-size: 35px;
    }

    #Package-section .container {
        max-width: 100% !important;
    }
}

@media (max-width: 1280px) {
    .main-site-logo a img {
        width: 255px;
    }

    .right-navbar ul {
        gap: 38px;
    }

    .right-navbar {
        gap: 22px;
    }

    #Package-section .container {
        max-width: 100%;
    }

    .price-main {
        font-size: 30px;
    }
}
@media (max-width: 1269px) {
	.social-icon a {
		background: #ffffff;
		border: 1px solid #283890;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	body:not(.home) {
		margin-top: 0;
	}
	.current-menu-item {
		background: #1e2a70;
	}
	.d-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	header.site-header {
		display: block !important;
		position: relative;
		padding-block: 5px;
	}
	header.site-header.fixed{
		position: relative;
	}
	.main-site-logo a img {
		width: 150px;
	}
	.inner-page header {
		padding: 5px 0;
	}
	.page-id-139 .we-makes-sec ul:not(.inline-list) li {
		flex: 0 0 45%;
	}
	.top-bar {
		display: none;
	}
	header {
		position: relative;
		background-color: #fff;
	}
	.main-site-logo a {
		position: relative;
	}
	.right-navbar {
		display: none;
	}
	.footer-bottom .container {
		justify-content: center;
		align-items: center;
		column-gap: 15px;
		flex-wrap: wrap;
		flex-direction: column-reverse;
		gap: 15px;
	}
}
@media (max-width: 1024px) {
	
	.page-id-142 .we-makes-sec ul:not(.inline-list) li {
		flex: 0 0 47%;
	}
	.page-id-142 .we-makes-sec ul:not(.inline-list) {
		margin-inline: auto;
		row-gap: 30px;
	}
	.we-makes-sec ul:not(.inline-list) li {
		flex: 0 0 47%;
	}
	.contact-form-section, .career-form-section, #Package-section {
		background-attachment: inherit;
	}
	.service-card {
		flex: 0 0 calc(50% - 14px);
	}
	.main-bx {
		position: relative;
		background: #000;
		padding-bottom: 25px;
	}
	.hero-overlay-text {
		max-width: 100%;
		text-align: left;
		color: #fff;
		position: relative;
		top: 0;
		max-height: max-content;
	}
	.hero-section .container {
		position: relative;
		z-index: 2;
		height: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		margin-bottom: 0;
		padding: 25px;
	}
	.hero-section {
		height: auto;
	}
	.hero-video {
		position: relative;
	}
	.features-bar {
		grid-template-columns: 1fr 1fr;
		position: relative;
	}
	.features-bar {
		max-width: 720px;
		margin-inline: auto;
		left: 0;
		right: 0;
		transform: none;
		bottom: 0;
	}
	.services-section .main-card-grid {
		grid-template-columns: 1fr 1fr;
	}
	.bottom-bx p {
		margin-inline: auto;
		max-width: 80%;
	}
	.we-makes-sec ul:not(.inline-list) li {
		flex: 0 0 46%;
		background: #f6f6f6;
		padding: 15px;
	}
	.we-makes-sec ul:not(.inline-list) li:after{
		display:none;
	}
	.svc-row {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 15px;
	}
	.svc-name {
		font-size: 25px;
	}
}
@media (max-width: 991px) {
	.before-after {
		display: none;
	}
	.footer .footer-bottom .container p a {
		color: #000000;
	}
	.ed-distribution-section .section-title h2 span {
		color: #ffffff;
		margin-left: 0;
		padding-left: 0;
		padding-right: 0;
	}
	.wash-package-inner .cardss .card {
		flex: 0 0 calc(50% - 15px);
	}
	.wash-package-inner .cardss .card {
		height: auto;
	}
	.hero-section .container {
		padding: 25px 0;
	}
	
	.icon-bx-wraper {
		height: auto;
		margin-top: 15px;
	}
	.hero-overlay-text h2 span::before, .hero-overlay-text h2 span::after,
	.hero-overlay-text h1 span::before, .hero-overlay-text h1 span::after{
		display:none;
	}
	.hero-section span {
		color: #ffffff;
		font-family: inherit;
	}
	.action-btn {
		justify-content: flex-start;
		margin-bottom: 30px;
		flex-wrap: wrap;
	}
	.action-btn a {
		width: 100%;
		text-align: center;
		margin-inline: auto;
		justify-content: center;
	}
	.slick-dots li button {
		height: 6px;
		width: 15px;
		border-radius: 0px;
	}
	.features-bar {
		padding: 0 15px;
	}
	.main-site-logo a img {
		width: 150px;
	}
	.ed-distribution-image {
		position: relative;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		padding-left: 0;
	}	
	.ed-distribution-image::before {
		position: absolute;
		content: "";
		width: 22px;
		z-index: 1212;
		background: radial-gradient(circle, rgba(254, 236, 145, 1) 0%, rgba(254, 186, 8, 1) 100%);
		height: 100%;
		transform: none;
		top: 0;
		left: 0;
	}
	.ed-distribution-section {
		padding: 45px 0px;
	}
	.results-section .main-gallry-grid {
		display: grid;
		margin: 45px 0px;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 20px;
	}
	.ed-distribution-content {
		max-width: 100%;
		margin-top: 25px;
	}
	.footer-container {
		padding-bottom: 35px;
		grid-template-columns: repeat(1, calc(100% - 35px));
	}
	.footer-container > .footer-col:nth-child(2)::before, .footer-container > .footer-col:nth-child(2)::after{
		display:none;
	}
	.footer {
		background-image: none;
	}
	.footer .footer-bottom .container p {
		margin: 0px;
	}
	.footer-bottom .container {
		justify-content: center;
		align-items: center;
		gap: 15px;
		flex-direction: column-reverse;
	}
	.inner-page header {
		position: relative;
		padding: 5px 0;
	}
	.page-id-142 #Package-section .card {
		margin-top: 0;
	}
	.add-border::before, .add-border2::before, .commercial-grid .inner-grid h2 span::after, .review-slider::before, .section-title h1:before, .section-title h2:before, .section-title h1:after, .section-title h2:after{
		display:none;
	}
	.footer-col i{
		display:none;
	}
	.footer-container > .footer-col:nth-child(2) {
		background: #283890;
		padding: 35px 0;
		border-block: 1px solid #28389045;
		border-radius: 5px;
	}
	.mobile-link2 {
		font-size: 18px;
	}
	.footer-container > .footer-col:nth-child(2) *{
		color: #fff !important;
	}
	.footer-col h4{
		background:transparent;
	}
	.add-border2 .mobile-link2 {
		margin-top: 0;
	}
	.add-border2 h4 {
		position: relative;
		left: -0;
	}
	.footer-bottom {
		padding-bottom: 20px;
		padding-top: 20px;
	}
	.footer {
		padding: 35px 0 0;
	}
}

@media (max-width: 767px) {
	.d-cards {
		grid-template-columns: repeat(1, 1fr);
	}
	.card-label {
		font-size: 24px;
	}
	.price-main {
		font-size: 24px;
	}
	.we-makes-sec ul:not(.inline-list) strong {
		font-size: 20px;
	}
	.wash-package-inner .cardss .card {
		margin: 0;
		flex: 0 0 100%;
	}
	.parallax-slider-blank {
		height: auto;
	}
	.features-bar {
		grid-template-columns: 1fr;
	}
	.card {
		padding: 22px;
		margin: 0;
		margin-top: 15px;
	}
	.footer-container {
		grid-template-columns: 1fr;
	}
	.footer-col ul li {
		font-size: 16px;
	}
	.review-slider::before {
		left: 0;
	}
	
	.add-border::before, .add-border2::before, .commercial-grid .inner-grid h2 span::after, .review-slider::before, .section-title h1:before, .section-title h2:before, .section-title h1:after, .section-title h2:after{
		display:none;
	}
	.before-after .images-bx .section-title {
		left: 0;
		position: relative;
	}
	.ed-distribution-section .section-title h2 span::after{
		display:none;
	}
	.mobile-link img {
		max-width: 120px;
	}
	.commercial-grid .inner-grid h2 span {
		color: #ffffff;
	}
	.commercial-grid {
		grid-template-columns: 1fr;
	}
	.results-section .main-gallry-grid {
		grid-template-columns: 1fr 1fr;
	}
	.section-title h1, .section-title h2, .before-after .section-title h2, .commercial-grid .inner-grid h2, .commercial-grid .inner-grid h2 span {
		font-size: 30px;
		padding-left: 0;
		padding-right: 0px;
		margin-left: 0;
	}
	.review-slider h2 {
		left: 0;
	}
	.ed-distribution-section {
		padding-top: 0;
	}
	.inner-page section {
		padding: 45px 0px;
	}
	.page-id-139 .we-makes-sec ul:not(.inline-list) li, .we-makes-sec ul:not(.inline-list) li, .page-id-142 .we-makes-sec ul:not(.inline-list) li {
		flex: 0 0 100%;
		padding: 15px;
		background: #f6f6f6;
	}
	.we-makes-sec ul:not(.inline-list) {
		gap: 15px;
		row-gap: 15px;
	}
	.we-makes-sec p {
		margin-top: 15px;
		font-weight: 600;
	}
	ul.inline-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	ul.inline-list li {
		text-align: left;
	}
	.service-card {
		flex: 0 0 100%;
	}
	.icon-bx-wraper {
		height: auto;
		margin-top: 15px;
		flex-direction: column;
		text-align: center;
	}
	.icon-content a {
		white-space: normal;
		word-break: break-word;
	}
	.feature-item .icon {
		position: relative;
		left: 0;
	}
	.feature-item {
		display: flex;
		align-items: center;
		gap: 10px;
		color: #fff;
		padding: 10px 24px;
		border-radius: 0;
		position: relative;
		border: 1px solid #ffffff40;
		border: 2px solid #f4b400;
		border-bottom: 2px solid #f4b400;
		background: radial-gradient(circle, rgb(65 79 108) 0%, rgba(10, 21, 40, 1) 100%);
		padding-left: 0;
		background: #e2f0fb;
		background: radial-gradient(circle, rgba(226, 240, 251, 1) 0%, rgba(38, 131, 200, 1) 100%);
		flex-direction: column;
	}
	.icon-bx {
		display: flex;
		flex-direction: column-reverse;
		column-gap: 17px;
		margin: 15px 0px;
		align-items: baseline;
		justify-content: center;
		flex-wrap: wrap;
		align-items: center;
		row-gap: 15px;
	}
	.before-after strong {
		color: orange;
		font-size: 22px;
	}
	.bottom-bx p {
		max-width: 100%;
		line-height: 1.2;
	}
}



@media (max-width: 575px) {
	.services-section .main-card-grid {
		grid-template-columns: 1fr;
	}
	.we-makes-sec ul:not(.inline-list) {
		margin-top: 15px;
	}
	.hero-overlay-text h1,
	.hero-overlay-text h2 {
		font-size: 32px;
	}
	.hero-overlay-text p {
		line-height: 1.2;
	}
	.results-section .main-gallry-grid :nth-child(5) {
		display: none;
	}
	.section-end ul {
		display: flex;
		justify-content: center;
		list-style: none;
		gap: 10px;
		margin: 20px 0px;
		padding: 0;
		flex-wrap: wrap;
	}
	.section-end ul li {
		font-weight: 600;
		background: radial-gradient(circle, rgb(247 226 116) 0%, rgba(254, 186, 8, 1) 100%);
		color: #000;
		padding: 6px 10px;
		width: 100%;
	}
	.input_field {
		width: 100%;
	}
	
}

@media (max-width: 350px) {
	.main-site-logo a img {
		width: 120px;
	}
	.mobmenur-container {
		top: 62px !important;
	}
}