/* Disable br on tablet & mobile */
@media (max-width: 1024px) {
    br {
        display: none;
    }
}


/* 16/3/26 - Header CSS */
/* base menu link */
.header-menu .elementskit-navbar-nav > li > a {
    position: relative;
    padding-bottom: 8px;
}

/* underline */
.header-menu .elementskit-navbar-nav > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

/* hover */
.header-menu .elementskit-navbar-nav > li > a:hover::after {
    width: 100%;
}

/* active menu */
.header-menu .elementskit-navbar-nav > li.current-menu-item > a::after,
.header-menu .elementskit-navbar-nav > li.current_page_item > a::after {
    width: 100%;
}

/* Banner */
span.black-text{
	color: #1A1A1A;
}

span.white-text{
	color: #fff;
}

span.red-text{
	color: #D32F2F;
}

/* Bordered Div */
.bordered-div {
    position: relative;


	border: none !important;
    background: transparent;
}

.bordered-div::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* border thickness */
    border-radius: inherit;

    background: linear-gradient(90deg, #C20000, #FF5959);

    /* MASK MAGIC */
    -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;
}
.bordered-div-hover:hover {
    border: 1px solid transparent !important;
    border-radius: 15px !important;
    background: 
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #C20000 0%, #FF5959 100%) border-box !important;
}

/* Services Slider */


/* Slider wrapper */
.services-swiper {
   padding: 30px 80px 50px;
    position: relative;
    overflow: visible;
}

/* Slide */
.services-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

/* Service Card */
.service-card {
    background: #000;
    border-radius: 14px;
    border: 1px solid #3a3a3a;
    transition: all .35s ease;

    max-width: 420px;
    width: 100%;
    padding: 36px;
	 min-height: 200px;   /* 🔥 adjust if needed */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical content align */
}

/* ICON */
.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.35s ease;
}

/* TITLE */
.service-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16.88px;
    line-height: 25.31px;
    color: #fff;
    margin-bottom: 10px;
}

/* EXCERPT */
.service-excerpt {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 13.13px;
    line-height: 22.31px;
    color: #fff;
    opacity: .85;
}

/* HOVER */
.service-card:hover {
    border: 1px solid transparent;
    background:
        linear-gradient(#000,#000) padding-box,
        linear-gradient(90deg,#C20000 0%,#FF5959 100%) border-box;
}

.service-card:hover .service-icon img {
    opacity: 1;
}

/* ACTIVE SLIDE */
.services-swiper .swiper-slide-active .service-card {
    border: 1px solid transparent;
    background:
        linear-gradient(#000,#000) padding-box,
        linear-gradient(90deg,#C20000 0%,#FF5959 100%) border-box;
}

.services-swiper .swiper-slide-active .service-icon img {
    opacity: 1;
}

.services-swiper .swiper-slide-active .service-title {
    color: #FF5959;
}

.services-swiper .swiper-slide-active .service-excerpt {
    opacity: 1;
}


/* NORMAL GRID (<=3 items) */
.services-slider-wrapper.no-slider .swiper-wrapper {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.services-slider-wrapper.no-slider .swiper-slide {
    width: 33.33%;
    flex: 0 0 33.33%;
}

/* MOBILE */
@media(max-width: 768px){
    .services-slider-wrapper.no-slider .swiper-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .services-slider-wrapper.no-slider .swiper-slide {
        width: 100%;
        flex: 0 0 100%;
    }
}

.services-swiper.no-swiper {
    padding: 10px 0px !important;
}

/* ====================================== */
/* PAGINATION */
/* ====================================== */

.services-swiper .swiper-pagination {
    position: relative;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-content: center;
    align-items: center;
}

.services-swiper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #3a3a3a;
    opacity: 1;
}

.services-swiper .swiper-pagination-bullet-active {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(90deg,#C20000 0%,#FF5959 100%);
}

/* ====================================== */
/* ARROWS (FINAL FIXED) */
/* ====================================== */

/* PERFECT CENTER BASED ON CARD */

.custom-prev,
.custom-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);

    width: 52px;
    height: 52px;
    border-radius: 50%;

    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(255,255,255,0.25);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
    cursor: pointer;
}

/* LEFT */
.custom-prev {
    left: -30px;
}

/* RIGHT */
.custom-next {
    right: -30px;
}

/* FIX ICON PERFECT CENTER */

/* ============================= */
/* SVG ARROWS (PERFECT CENTER) */
/* ============================= */

.custom-prev::after,
.custom-next::after {
    content: "";
    width: 18px;
    height: 18px;

    display: block;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* LEFT ARROW SVG */
.custom-prev::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
}

/* RIGHT ARROW SVG */
.custom-next::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}
/* HOVER (premium feel) */
.custom-prev:hover,
.custom-next:hover {
    border: 1px solid transparent;
    background:
        linear-gradient(rgba(0,0,0,0.85),rgba(0,0,0,0.85)) padding-box,
        linear-gradient(90deg,#C20000,#FF5959) border-box;

  transform: translateY(-50%) scale(1.08);
}

/* ====================================== */
/* RESPONSIVE */
/* ====================================== */

/* Tablet */
@media (max-width: 1024px) {
    .service-card {
        padding: 26px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .service-card {
        padding: 22px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-excerpt {
        font-size: 13px;
    }

    .services-swiper .swiper-button-prev,
    .services-swiper .swiper-button-next {
        width: 34px;
        height: 34px;
    }

    .services-swiper .swiper-button-prev::after,
    .services-swiper .swiper-button-next::after {
        font-size: 14px;
    }
}

.services-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible; /* 👈 MUST */
}
/* ====================================== */
/* SMOOTH EXCERPT ANIMATION (FIX)
/* ====================================== */

.service-excerpt {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 13.13px;
    line-height: 22.31px;
    color: #fff;
    opacity: .85;

    max-height: 66px; /* 👈 ~3 lines (22px * 3) */
    overflow: hidden;

    position: relative;
    transition: max-height 0.45s ease, opacity 0.3s ease;
}

/* smooth expand */
.service-card:hover .service-excerpt {
    max-height: 200px; /* 👈 adjust based on content */
}

/* fade overlay */
.service-excerpt::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* remove fade on hover */
.service-card:hover .service-excerpt::after {
    opacity: 0;
}

/* ====================================== */
/* ACTIVE CARD (FOR <=3 ITEMS)
/* ====================================== */


/* ACTIVE STATE */
.services-slider-wrapper.no-slider .service-card.active {

    border: 1px solid transparent;
    background:
        linear-gradient(#000,#000) padding-box,
        linear-gradient(90deg,#C20000 0%,#FF5959 100%) border-box;
}

/* active icon */
.services-slider-wrapper.no-slider .service-card.active .service-icon img {
    opacity: 1;
}

/* active title */
.services-slider-wrapper.no-slider .service-card.active .service-title {
    color: #FF5959;
}

/* active text */
.services-slider-wrapper.no-slider .service-card.active .service-excerpt {
    opacity: 1;
}

/* Center Mode */
/* APPLY ONLY WHEN align="center" */
.content-center .service-card {
    align-items: center;
    text-align: center;
	padding: 26px;
}

.content-center .service-image, .content-center .service-image.is-svg.center-img img {
    display: flex;
    justify-content: center;
	margin: 0 auto;
	border: 1px solid #626262;
	border-radius: 15px;
}


.content-center .service-btn {
    margin-left: auto;
    margin-right: auto;
}

/* Full Width Image */
.service-image {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 14px;
}

/* NORMAL IMAGE (banner style) */
.service-image.is-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
}

/* SVG FIX */
.service-image.is-svg img {
    width: 80px;
    height: auto;
    margin: 0 auto;
    display: block;
}


/* Service BTN */
/* RESET FIRST (VERY IMPORTANT) */
.service-btn {
    display: inline-block;
    margin-top: 10px;

    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 25.31px;
    letter-spacing: 0;
    text-align: center;

    color: #fff !important;

    

    cursor: pointer;
}


.service-image.is-svg.img-left img {

    margin: 0;
   
}

/* 🔥 USE SAME GRADIENT LOGIC LIKE HEADING */
 .service-btn:hover {
  

    color: #D32F2F !important;

}

/* Scroll container */
.scroll-txt{
max-height:220px;
overflow-y:auto;
padding-right:12px;
}

/* Scrollbar width */
.scroll-txt::-webkit-scrollbar{
width:4px;
}

/* FORCE remove arrows */
.scroll-txt::-webkit-scrollbar-button:single-button{
display:none;
width:0;
height:0;
}

.scroll-txt::-webkit-scrollbar-button{
display:none;
}

/* Track (full vertical line) */
.scroll-txt::-webkit-scrollbar-track{
background:rgba(255,255,255,0.25);
border-radius:10px;
}

/* Scroll thumb */
.scroll-txt::-webkit-scrollbar-thumb{
background:#ffffff;
border-radius:10px;
}

/* Remove corner */
.scroll-txt::-webkit-scrollbar-corner{
background:transparent;
}

/* Firefox */
.scroll-txt{
scrollbar-width:thin;
scrollbar-color:#ffffff rgba(255,255,255,0.25);
}


/* Dashed Border */
.dashed-border{
position:relative;
border-radius:18px;
background:#fff;


/* dashed border */
background-image: 
repeating-linear-gradient(90deg,#D32F2F 0,#D32F2F 12px,transparent 12px,transparent 22px),
repeating-linear-gradient(90deg,#D32F2F 0,#D32F2F 12px,transparent 12px,transparent 22px),
repeating-linear-gradient(0deg,#D32F2F 0,#D32F2F 12px,transparent 12px,transparent 22px),
repeating-linear-gradient(0deg,#D32F2F 0,#D32F2F 12px,transparent 12px,transparent 22px);

background-position:
top left,
bottom left,
top left,
top right;

background-size:
100% 2px,
100% 2px,
2px 100%,
2px 100%;

background-repeat:no-repeat;
}

/* Discount Title */
/* Discount title animation */

.discount-box .elementor-icon-box-title{
color:#000;
font-weight:800;

animation:
discountColor 2s ease-in-out infinite alternate,
discountPulse 2s ease-in-out infinite;
}

/* color change */

@keyframes discountColor{
0%{
color:#000000;
}
100%{
color:#D32F2F;
}
}

/* pulse */

@keyframes discountPulse{
0%,100%{
transform:scale(1);
}
50%{
transform:scale(1.05);
}
}

/* FAQ Accordion */
.faq-accordion > .e-n-accordion > .e-n-accordion-item[open] > .e-n-accordion-item-title {

    border-radius: 15px 15px 0px 0px;
}

/* Form CSS */
.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
margin-bottom:18px;
}

.form-col{
width:100%;
}

.form-row > span,
.form-row > .wpcf7-form-control-wrap{
grid-column:1 / -1;
}

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

.wpcf7-form-control, input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea{
width:100%;
box-sizing:border-box;
background:#F7F7F7;
border:none;
border-top:0.94px solid #E5E7EB;
border-radius:11.25px;
padding:16px 18px;
font-family:Inter;
}

.wpcf7 select{
width:100%;
background:#F7F7F7;
border:none;
border-top:0.94px solid #E5E7EB;
border-radius:11.25px;
padding:16px 40px 16px 18px;
font-family:Inter;
color:#99A1AF;
appearance:none;
background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2399A1AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
background-repeat:no-repeat;
background-position:right 18px center;
background-size:14px;
}

.wpcf7 select:focus{
outline:none;
border-top:0.94px solid #D32F2F;
color:#000;
}

.wpcf7 select option{
color:#000;
}

.wpcf7-form-control:focus{
outline:none;
border-top:0.94px solid #D32F2F;
}

.wpcf7 textarea{
height:120px;
resize:none;
}

.form-row.submit-row{
grid-template-columns:1fr;
}

.send-btn{
width:100%;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
background:#D32F2F;
color:#fff;
border:none;
border-radius:11.25px;
padding:16px;
font-family:Inter;
font-weight:500;
font-size:15px;
line-height:22.5px;
cursor:pointer;
box-shadow:
0px 3.75px 5.63px -3.75px #FFC9C966,
0px 9.38px 14.06px -2.81px #FFC9C966;
}

.send-btn img{
width:18px;
height:18px;
filter:brightness(0) invert(1);
}

.form-consent{
font-family:Inter;
font-weight:400;
font-size:10.31px;
line-height:16.76px;
letter-spacing:0;
color:#99A1AF;
margin-top:12px;
}

.form-consent a{
color:#D32F2F;
text-decoration:underline;
}

.form-consent a:hover{
color:#D32F2F;
text-decoration:underline;
}

@media (max-width:768px){
.form-row{
grid-template-columns:1fr;
}
}

.send-btn:hover{
	background-color: #000;
}


/* Header - 23/3/26 */
      .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            background: transparent;
            transition: background 0.4s ease, box-shadow 0.4s ease;
        }

        .main-header.scrolled {
            background: #ffffff !important;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

.cta-box h3{
	margin-top: 0px !important;
}

/* =========================
   BASE GLASS STYLE
========================= */
.trust-box {
    position: relative;
    overflow: hidden;

    background: rgba(56, 56, 56, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-radius: 16px;
    padding: 30px;

    border: none;
    transition: all 0.3s ease;
}

/* Optional subtle lift */
.trust-box:hover {
    transform: translateY(-4px);
	   backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* =========================
   PREMIUM BORDER
========================= */
.trust-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;

    background: linear-gradient(
        140deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.25)
    );

    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
    z-index: 1;
}


/* =========================
   TEXT + ICON
========================= */
.trust-box .trust-icon-box svg path {
    transition: stroke 0.3s ease;
}

.trust-box .trust-icon-box h3,
.trust-box .trust-icon-box p {
    transition: color 0.3s ease;
}

/* Keep content above */
.trust-box .elementor-widget-container {
    position: relative;
    z-index: 2;
}


/* =========================
   ✨ ORIGINAL SWEEP EFFECT (REFINED)
========================= */
.trust-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.12),
        transparent
    );

    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}


/* =========================
   SEQUENTIAL ANIMATION (SLOW)
========================= */
.trust-box:nth-child(1)::after {
    animation: shine 8s infinite;
    animation-delay: 0s;
}

.trust-box:nth-child(2)::after {
    animation: shine 8s infinite;
    animation-delay: 2s;
}

.trust-box:nth-child(3)::after {
    animation: shine 8s infinite;
    animation-delay: 4s;
}

.trust-box:nth-child(4)::after {
    animation: shine 8s infinite;
    animation-delay: 6s;
}


/* =========================
   KEYFRAMES (SMOOTHER)
========================= */
@keyframes shine {
    0% {
        left: -120%;
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    50% {
        left: 120%;
        opacity: 0.4;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}


/* 3/4/26 */
.text a{
  text-decoration: underline;
  text-underline-offset: 6px; /* controls space */
}


/* 8/4/26 */
.red-gradient .elementor-heading-title {
    background: linear-gradient(90deg, #C20000 0%, #FF5959 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.service-desc ol {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
    counter-reset: item;
}

.service-desc ol li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 10px;
}

/* Line per item */
.service-desc ol li::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 36px;
    bottom: -25px;
    width: 2px;
    background: #D32F2F;
}

/* REMOVE line from last item */
.service-desc ol li:last-child::after {
    display: none;
}

/* Number circle */
.service-desc ol li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    border: 2px solid #D32F2F;
    border-radius: 50%;
    text-align: center;
    line-height: 34px;
    font-weight: 600;
    color: #D32F2F;
    background: #fff;
    font-size: 14px;
}


/* ======================================
   BENEFITS SLIDER - FINAL FIXED
====================================== */

/* CARD BASE */
.benefits-slider-wrapper .service-card {
    background: #fff !important;
    border-radius: 14px;
    border: 1px solid #626262;

    transition: all 0.35s ease;

    position: relative;
    overflow: hidden;

    box-shadow: 0px 1.88px 15px 0px #00000033;
    transform: translateY(0);
}

/* =========================
   HOVER + ACTIVE BORDER
========================= */
.benefits-slider-wrapper .service-card:hover,
.benefits-slider-wrapper .swiper-slide-active .service-card,
.benefits-slider-wrapper .service-card.active {

    border: 1px solid transparent !important;

    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #C20000 0%, #FF5959 100%) border-box !important;

    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* =========================
   TITLE
========================= */
.benefits-slider-wrapper .service-title {
    color: #1A1A1A !important;
    transition: all 0.3s ease;
}

/* =========================
   EXCERPT (DEFAULT)
========================= */
.benefits-slider-wrapper .service-excerpt {
    color: #1A1A1A !important;

    max-height: 66px;
    overflow: hidden;
    position: relative;

    transition: 
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        transform 0.3s ease;

    opacity: 0.8;
}

/* =========================
   ONLY HOVER EXPANDS (FIXED)
========================= */
.benefits-slider-wrapper .service-card:hover .service-excerpt {
    max-height: 220px;
    opacity: 1;
    transform: translateY(2px);
}

/* =========================
   FADE OVERLAY
========================= */
.benefits-slider-wrapper .service-excerpt::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30px;

    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;

    transition: opacity 0.3s ease;
}

/* remove fade ONLY on hover */
.benefits-slider-wrapper .service-card:hover .service-excerpt::after {
    opacity: 0;
}

/* =========================
   ICON
========================= */
.benefits-slider-wrapper .service-icon img {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.benefits-slider-wrapper .service-card:hover .service-icon img,
.benefits-slider-wrapper .swiper-slide-active .service-icon img {
    opacity: 1;
}

/* =========================
   NO SLIDER ACTIVE (<=3 ITEMS)
========================= */
.benefits-slider-wrapper.no-slider .service-card.active {
    border: 1px solid transparent;

    background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(90deg,#C20000 0%,#FF5959 100%) border-box;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ======================================
   ARROWS (WHITE STYLE)
====================================== */

.benefits-slider-wrapper .custom-prev,
.benefits-slider-wrapper .custom-next {

    background: #fff;
    border: 1px solid #1A1A1A;

    width: 52px;
    height: 52px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

/* arrow icons black */
.benefits-slider-wrapper .custom-prev::after,
.benefits-slider-wrapper .custom-next::after {
    filter: brightness(0);
}

/* HOVER - GRADIENT BORDER */
.benefits-slider-wrapper .custom-prev:hover,
.benefits-slider-wrapper .custom-next:hover {

    border: 1px solid transparent;

    background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(90deg,#C20000,#FF5959) border-box;

    transform: scale(1.08);
}

/* 10/4/26 */
.sign-boxes h3.elementor-image-box-title {
    margin: 0;
}

.sign-boxes a:hover{
  color: #d32f2f;
}

.sign-boxes figure.elementor-image-box-img img{
	    opacity: 0.7;
    transition: all 0.3s ease;
}

.sign-boxes:hover figure.elementor-image-box-img img{
	    opacity: 1;
   
}

/* 17/4/26 */
/* Remove default bullets */
.text.service-desc.red-point ul {
    list-style: none;
    padding-left: 20px;
}

/* Custom gradient bullet */
.text.service-desc.red-point ul li {
    position: relative;
    padding-left: 18px;
}

.text.service-desc.red-point ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(90deg, #C20000 0%, #FF5959 100%);
}

/* Apply same gradient to strong text */
.text.service-desc.red-point ul li strong {
    background: linear-gradient(90deg, #C20000 0%, #FF5959 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FAQ */
/* WHITE FAQ BASE */
.white-faq {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* BLEND OVERLAY IMAGE */
.white-faq::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("https://abostonplumber.com/wp-content/uploads/2026/03/faq-bg.png") center/cover no-repeat;

    mix-blend-mode: exclusion;
    opacity: 1; /* adjust (0.2–0.5 best range) */

    pointer-events: none;
    z-index: 1;
}

/* KEEP CONTENT ABOVE */
.white-faq > * {
    position: relative;
    z-index: 2;
}

/* Testimonial Styling */
.testimonial-card{
	display: flex;
 flex-direction: column;
    justify-content: space-between;
}

.testimonial-author{
	color: #000000;
 margin-top: 10px;
font-weight: 400;
font-size: 15px;
line-height: 22.31px;
}


.center-icon-box h3{
	margin-top: 0px;
}


/* ====================================== */
/* PAGINATION (COUPON LOOP) */
/* ====================================== */

.coupon-loop .swiper-pagination {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: -40px; /* adjust as needed */

    width: max-content; /* important */
	
	  display: flex;
    align-items: center;   /* 🔥 vertical center fix */
    justify-content: center;
}

/* Default dots */
.coupon-loop .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #3a3a3a;
    opacity: 1;
    transition: all 0.3s ease;
}

/* Active dot */
.coupon-loop .swiper-pagination-bullet-active {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(90deg, #C20000 0%, #FF5959 100%);
}

/* Location Pills */
.location-wrapper{width:100%;}
.location-container{
display:flex;
flex-wrap:wrap;
gap:10px;
max-height:110px;
overflow:hidden;
transition:.3s;
}
.location-container.expanded{
max-height:120px;
overflow-y:auto;
padding-right:5px;
}
.location-pill{
font-family:Inter;
font-weight:400;
font-size:12.19px;
line-height:18.28px;
color:#555555;
background:#F7F7F7;
border-radius:50px;
padding:6px 14px;
cursor:pointer;
transition:.2s;
}
.location-pill:hover{
color:#D32F2F;
background:#FEF2F2;
}
.extra-location{display:none;}
.location-container.expanded .extra-location{display:inline-block;}
.location-more{
font-family:Inter;
font-weight:400;
font-size:12.19px;
line-height:18.28px;
color:#D32F2F;
background:#FEF2F2;
border-radius:50px;
padding:6px 14px;
cursor:pointer;
}
.location-container.expanded .location-more{display:none;}
.location-container::-webkit-scrollbar{
width:6px;
}
.location-container::-webkit-scrollbar-thumb{
background:#ddd;
border-radius:10px;
}


.show-all-locations .location-container{
    max-height:none !important;
    overflow:visible !important;
}

/* Floating Bar  */

.floating-bar{
  position: fixed;
  bottom: 0;
  right: 5em;
  left: auto;
  width: auto;
  z-index: 99999;
border-radius: 12px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);

  transform: translateY(100%);
  opacity: 0;
  animation: slideUpBar 0.5s ease forwards;
}

/* Animation */
@keyframes slideUpBar {
  to{
    transform: translateY(0);
    opacity: 1;
  }
}

/* Structure  */

/* flex container */
.floating-bar .elementor-icon-list-items{
  display: flex;
}

/* each button */
.floating-bar .elementor-icon-list-item{
  flex: 1;
  min-width: 70px;

  display: flex;
  align-items: stretch;
  justify-content: center;

  background: linear-gradient(135deg, #D32F2F, #B71C1C);
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
  position: relative;
}

/* remove last divider */
.floating-bar .elementor-icon-list-item:last-child{
  border-right: none;
}

/* Link Fix  */

.floating-bar .elementor-icon-list-item > a{
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  padding: 12px 8px;
  text-decoration: none;
}

/* Icon  */

.floating-bar .elementor-icon-list-icon{
  margin-bottom: 8px;
}

.floating-bar .elementor-icon-list-icon i,
.floating-bar .elementor-icon-list-icon svg{
  
  transition: transform 0.3s ease;
}

/* Text  */

.floating-bar .elementor-icon-list-text{
  
  transition: all 0.3s ease;
}

/* Corner  */

.floating-bar .elementor-icon-list-item:first-child{
  border-top-left-radius: 12px;
}

.floating-bar .elementor-icon-list-item:last-child{
  border-top-right-radius: 12px;
}

/* Hover  */
.floating-bar .elementor-icon-list-item:hover{
  background: linear-gradient(135deg, #ff3d3d, #c62828);
  transform: scale(1.03);
  transform-origin: bottom center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 2;
}

/* Body Fix  */

body{
  padding-bottom: 0 !important;
}

/* Mobile  */

@media (max-width: 767px){

  /* full width */
  .floating-bar{
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  /* full width structure */
  .floating-bar .elementor-widget-container,
  .floating-bar .elementor-icon-list,
  .floating-bar .elementor-icon-list-items{
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
  }

  /* buttons */
  .floating-bar .elementor-icon-list-item{
    flex: 1 !important;
    min-width: 0 !important;
  }

  /* link (CRITICAL) */
  .floating-bar .elementor-icon-list-item > a{
    padding: 8px 4px;
  }

  /* icon */
  .floating-bar .elementor-icon-list-icon{
    margin-bottom: 8px;
  }

  .floating-bar .elementor-icon-list-icon i,
  .floating-bar .elementor-icon-list-icon svg{
    
  }

  /* text */
  .floating-bar .elementor-icon-list-text{

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

}

/* =========================================
   CALENDLY SIDEBAR
========================================= */

.custom-calendly-sidebar{
  position: fixed;
  inset: 0;

  z-index: 999999;

  pointer-events: none;

  overflow: hidden;
}

/* active */
.custom-calendly-sidebar.active{
  pointer-events: auto;
}


/* =========================================
   OVERLAY
========================================= */

.custom-calendly-overlay{
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0);

  opacity: 0;

  backdrop-filter: blur(0px);

  transition:
    opacity 0.45s ease,
    backdrop-filter 0.45s ease,
    background 0.45s ease;
}

.custom-calendly-sidebar.active .custom-calendly-overlay{
  opacity: 1;

  background: rgba(0,0,0,0.45);

  backdrop-filter: blur(4px);
}


/* =========================================
   PANEL
========================================= */

.custom-calendly-panel{
  position: absolute;

  top: 0;
  right: 0;

  width: 500px;
  max-width: 100%;
  height: 100%;

  background: #fff;

  overflow: hidden;

  box-shadow:
    -20px 0 60px rgba(0,0,0,0.18);

  /* smooth animation */
  transform:
    translateX(100%)
    scale(0.96);

  opacity: 0;

  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;

  will-change: transform, opacity;
}

/* active */
.custom-calendly-sidebar.active .custom-calendly-panel{

  transform:
    translateX(0)
    scale(1);

  opacity: 1;
}


/* =========================================
   CLOSE BUTTON
========================================= */

.custom-calendly-close{
  position: absolute;

  top: 18px;
  right: 18px;

  z-index: 100;

  width: 42px;
  height: 42px;

  border: none;

  border-radius: 50%;

  background: rgba(0,0,0,0.85);

  color: #fff;

  font-size: 18px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.custom-calendly-close:hover{

  background: #d32f2f;

  transform:
    rotate(90deg)
    scale(1.08);

}


/* =========================================
   WIDGET
========================================= */

#custom-calendly-widget{
  width: 100%;
  height: 100%;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

  .custom-calendly-panel{

    width: 100%;

    transform:
      translateY(100%);
  }

  .custom-calendly-sidebar.active .custom-calendly-panel{

    transform:
      translateY(0);
  }

}
/* =========================================
   FULL HEIGHT + HORIZONTAL CENTER
========================================= */

.custom-calendly-panel{
  display: flex;
  justify-content: center;

  padding: 0 !important;
}

/* widget wrapper */
#custom-calendly-widget{
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
}

/* calendly iframe */
#custom-calendly-widget iframe{
  width: 100% !important;
  height: 100vh !important;

  border: none !important;
}
/* =========================================
   CHAT WINDOW
========================================= */

 #tidio-chat iframe,
#tidio-chat {
    bottom: -2.5em !important;
/* 	opacity: 0 !important;
	display: none !important; */
    right: -1em !important;
}



/* =========================================
   MOBILE
========================================= */

@media(max-width:767px){
 #tidio-chat iframe,
#tidio-chat {
    bottom: 3em !important;
/* 	opacity: 0 !important;
	display: none !important; */
    right: 1em !important;
}

}



/* Normal card title link */
.service-card .service-title a{
    color:#ffffff;
    text-decoration:none;
    transition:0.3s ease;
}

/* Active / hovered card */
.service-card:hover .service-title a,
.swiper-slide-active .service-title a{
    color:#FF5959;
}

/* Optional hover */
.service-card:hover{
    border-color:#FF5959;
}

/* Blog Listing */
.blog-item .blog-img{
    position: relative;
    overflow: hidden;
}

.blog-item .blog-img::after{
    content: "";
    position: absolute;
    inset: 0;
    background: #D32F2F;
    border-radius: 25px;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.blog-item:hover .blog-img::after{
    opacity: 0.6;
}



.blogs-grid .elementor-pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.blogs-grid .page-numbers{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease;
    border: 2px solid #D32F2F;
}

.blogs-grid .page-numbers.current,
.blogs-grid .page-numbers:hover{
    background-color: #D32F2F;
    color: #fff;
}


/* Sitemap */
.custom-sitemap ul{
    list-style:none;
    padding-left:24px;
    margin:12px 0 0;
}

.custom-sitemap li{
    margin-bottom:10px;
    position:relative;
}

.custom-sitemap a{
    color:#000;
    text-decoration:none;
    display:inline-block;
    transition:all .3s ease;
    position:relative;
    font-size:15px !important;
    font-weight:400;
    line-height:1.6;
}

.custom-sitemap a:hover{
    color:#d32f2f;
    transform:translateX(8px);
}

.custom-sitemap a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-2px;
    width:0;
    height:2px;
    background:#d32f2f;
    transition:width .3s ease;
}

.custom-sitemap a:hover::after{
    width:100%;
}

.custom-sitemap h2{

    margin-bottom:15px;
    font-size:20px;
    font-weight:600;
}

.custom-sitemap .month-item{
    margin-bottom:18px;
    font-size:18px;
    font-weight:600;
}

.custom-sitemap .month-title{
    display:block;
    margin-bottom:12px;
}

/* FIXED DASH STYLE */
.custom-sitemap .child-item{
    position:relative;
    padding-left:22px;
}

/* remove inherited weird dash */
.custom-sitemap .child-item::after{
    display:none;
}

/* clean single dash */
.custom-sitemap .child-item::before{
    content:'';
    position:absolute;
    left:0;
    top:14px;
    width:12px;
    height:3px;
    background:#d32f2f;
    border-radius:20px;
}

/* proper spacing for nested levels */
.custom-sitemap .child-item > ul{
    margin-top:12px;
    padding-left:28px;
}

/* deeper hierarchy spacing */
.custom-sitemap ul ul ul{
    margin-top:14px;
    padding-left:30px;
}
/* REMOVE DEFAULT BULLETS/DOTS */
.custom-sitemap ul,
.custom-sitemap li{
    list-style:none !important;
}

.custom-sitemap li::marker{
    display:none !important;
    content:'' !important;
}

/* keep only custom red dash */
.custom-sitemap .child-item::before{
    content:'';
    position:absolute;
    left:0;
    top:14px;
    width:12px;
    height:3px;
    background:#d32f2f;
    border-radius:20px;
}

.custom-sitemap > .top-parent-list{
    padding-left:0 !important;
}

/* Breadcrumb */
.rank-math-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #000000;
}

.rank-math-breadcrumb p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
}

.rank-math-breadcrumb a,
.rank-math-breadcrumb .last {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 4px; 
    text-decoration-thickness: 1px;
    transition: all 0.3s ease;
}

.rank-math-breadcrumb a:hover,
.rank-math-breadcrumb .last {
    color: #D32F2F;
}

.rank-math-breadcrumb .separator {
    color: #000000;
    margin: 0 4px;
}

/* Post Meta */
.post-meta .elementor-icon-list-item a{
	justify-content: flex-end !important;
}

.post-navigation{
		width: 100%;
}

.post-navigation .elementor-post-navigation{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}

.post-navigation .elementor-post-navigation__link{
    width: auto !important;
    overflow: unset;
    text-overflow: unset;
    display: flex;
    justify-content: center;
}

.post-navigation .elementor-post-navigation__link a{
    background: #D32F2F;
    box-shadow: 
        0px 3.75px 5.63px -3.75px #82181A4D,
        0px 9.38px 14.06px -2.81px #82181A4D;

    padding: 14px 22px;
    border-radius: 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    text-decoration: none;
    transition: all 0.35s ease;
}

/* Hover Background */
.post-navigation .elementor-post-navigation__link a:hover{
    background: #000;
}

/* Arrow Animation */
.post-navigation .post-navigation__arrow-wrapper{
    transition: transform 0.35s ease;
    display: flex;
    align-items: center;
}

/* Previous Button Arrow */
.post-navigation .elementor-post-navigation__prev a:hover 
.post-navigation__arrow-wrapper{
    transform: translateX(-5px);
}

/* Next Button Arrow */
.post-navigation .elementor-post-navigation__next a:hover 
.post-navigation__arrow-wrapper{
    transform: translateX(5px);
}

/* SVG Smooth Transition */
.post-navigation .post-navigation__arrow-wrapper svg{
    transition: all 0.35s ease;
}

/* Multiple Form */
.request-form h2{
    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:37.5px;
    line-height:56px;
    text-align:center;
    color:#000;
    margin-bottom:50px;
    text-transform:uppercase;
}

/* Desktop */


/* Tablet */
@media (max-width:1024px){

    .first-section-spacing{
 padding: 6em 2em 2em 2em !important;
			min-height: 100vh !important;
    }

}

/* Mobile */
@media (max-width:767px){

    .first-section-spacing{
         padding: 8em 2em 2em 2em !important;
				min-height: 100vh !important;
    }

}

/* 29/5/26 */
.plumbing-service-list li{
    background:#fff;
    border:2px solid #eee;
    border-radius:15px;
    padding:15px !important;
    box-shadow:0px 1.88px 11.25px rgba(0,0,0,.06);

    transition:
        border-color .45s cubic-bezier(0.22,1,0.36,1),
        box-shadow .45s cubic-bezier(0.22,1,0.36,1);
}

.plumbing-service-list li .elementor-icon-list-icon{
    transition:transform .45s cubic-bezier(0.22,1,0.36,1);
    transform-origin:center;
}

.plumbing-service-list li:hover{
    border-color:#D32F2F;
    box-shadow:0 8px 20px rgba(211,47,47,.12);
}

.plumbing-service-list li:hover .elementor-icon-list-icon{
    transform:scale(1.12);
}