/* Global Variables */
:root {
    --primary-color: #282424;
    --primary-color-rgb: 29, 29, 29;
    --secondary-color: #7D7D7D;
    --orange-color: #ed3237;
    --blue-color: #1475BC;
    --orange-color-rgb: 255, 165, 0;
    --divider-color: #E1E4EB;
    --white-color: #FFFFFF;
    --default-font: "Manrope", sans-serif;

}


/* General css */
body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--primary-color);
    background: #F5F6F7;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    word-wrap: break-word;
    letter-spacing: .1px;
}


article {
    background: var(--white-color);
    border-radius: 8px;
}


p {
    font-family: var(--default-font);
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 6px 0 14.4px 0;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

p {
    color: #302d55;
    word-wrap: break-word;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

ol li,
ul li {
    font-size: 16px;
    line-height: 1.9;
    color: #302d55;
}

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

@media(max-width:576px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

}


/* =====Banner Section===== */
.banner-wrapper {
    padding: 40px 0;
    background: var(--white-color);
}

.banner-wrapper .highlight {
    color: var(--blue-color);
    font-weight: 600;
}

.banner-wrapper .hero-image {
    display: block;
    width: 100%;
    height: auto;
    -webkit-animation: heroimageborder 15s ease-in-out infinite;
    animation: heroimageborder 15s ease-in-out infinite;
}

@keyframes heroimageborder {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.section-heading {
    border-bottom: 3px solid var(--orange-color);
    padding-bottom: 5px;
}

.section-heading .title {
    font-size: 22px;
    margin: 12px 8px;
}

.section-heading .link-btn,
.card-viewbtn-details a {
    background-color: var(--orange-color);
    border: 1px solid var(--orange-color);
    padding: 5px 12px;
    border-radius: 4px;
    color: var(--white-color);
    font-size: 16px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-in-out;
}

.section-heading .link-btn:hover,
.card-viewbtn-details a:hover {
    background-color: var(--white-color);
    color: var(--orange-color);
    border: 1px solid var(--orange-color);
}



@media(max-width:575px) {
    .section-heading .title {
        font-size: 18px;
    }
}

/* ===Service Info ==== */
.service-card {
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out;
    display: flex;
    height: 100%;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card .image-box {
    width: 100%;
}

.service-card .image-box .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card .title-heading {
    padding: 8px 12px;
}

.service-card .title-heading .head-title {
    line-height: 1.4;
    font-size: 16px;
}

.service-card .title-heading .head-title a {
    color: var(--primary-color);
}

/* ==============Service box full withd=========== */
.servicefull-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    gap: 20px;
}

.servicefull-card .servicefull-images {
    width: 40%;
    border: 5px solid #fff;
    box-shadow: 0 0 0 1px #e7e7e7;
    position: relative;
    max-height: 200px;
    overflow: hidden;
}

.servicefull-card .servicefull-images a>img {
    object-fit: cover;
    height: 100%;
    transition: all 0.5s ease-in-out;
}

.servicefull-card .servicefull-images:hover img {
    transform: scale(1.1);
}

.servicefull-card .servicefull-images .sub-cat-name {
    position: absolute;
    top: 0;
    /* background: var(--orange-color); */

}

.servicefull-card .servicefull-images .sub-cat-name a {
    color: var(--white-color);
    font-size: 12px;
    padding: 4px 8px 4px 6px;
    border-radius: 0 18px 18px 0;
    left: -5px;
}

.servicefull-card .service-info {
    width: 60%;
}

.servicefull-card .service-info .main-title {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--primary-color);
    transition: all 0.3s;
}

.servicefull-card .service-info .main-title:hover {
    color: var(--orange-color);
}

.servicefull-card .service-info .text-para {
    line-height: 1.7;
}

@media(max-width:768px) {
    .servicefull-card {
        flex-direction: column;
    }

    .servicefull-card .servicefull-images {
        width: 100%;
    }

    .servicefull-card .service-info {
        width: 100%;
    }
}

/* ===sidebar=== */
.sidebar-cagegory {
    position: sticky;
    top: 122px;
}

.sidebar-cagegory ul {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: start;
    list-style: none;

}

.sidebar-cagegory ul li a {
    display: block;
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 600;
}

.sidebar-cagegory ul li:nth-child(odd) a {
    background-color: var(--white-color);
    color: var(--orange-color);
}

.sidebar-cagegory ul li:nth-child(even) a {
    background-color: #f5f6f7;
    color: var(--blue-color);
}

@media(max-width:1200px) {
    .sidebar-cagegory {
        top: 115px;
    }
}

@media(max-width:992px) {
    .sidebar-cagegory {
        top: 105px;
    }
}

/* ===============Pages Catogary Menu==== */
.sidebar-page {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
}

.sidebar-page .name {
    font-size: 18px;
    font-weight: 800;
    color: #302d55;
}

/* ================Brandcome====== */
.breadcrumbs {
    font-size: 14px;
    margin-bottom: 15px;
}

.breadcrumbs a {
    color: var(--primary-color);
    transition: all 0.3s;
    font-weight: 800;
}

.breadcrumbs a:hover {
    color: var(--orange-color);
}


/* =====Not found page=== */
#notfound {
    position: relative;
    background-color: #2f1d3f;
    margin: 0 auto;
    background-image: repeating-linear-gradient(45deg, #2f1d3f, #2f1d3f 20px, #458ed10a 0, #458ed10a 40px);
    text-align: center;
    padding: 60px 20px;
}


.notfound {
    width: 100%;
    line-height: 1.4;
    text-align: center;
}

.notfound .notfound-404 {
    margin-bottom: 20px;
    z-index: -1;
}

.notfound .notfound-404 h1 {
    font-size: 224px;
    font-weight: 900;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: -12px;
    color: #ed3237;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 #fff, -4px -4px 0 #fff, -4px 4px 0 #fff, 4px -4px 0 #fff, 4px 4px 4px #666, -4px -4px 4px #666, -4px 4px 4px #666, 4px -4px 4px #666;
    letter-spacing: -20px;
}

.notfound .notfound-404 h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0px 2px 0px #ed3237;
    letter-spacing: 13px;
    margin: 0;
}

.notfound .notfound-404 a {
    display: inline-block;
    text-transform: uppercase;
    color: #ed3237;
    background-color: #fff;
    text-decoration: none;
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 700;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    margin-top: 40px;
    border-radius: 4px;
}

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 h2 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 480px) {
    .notfound .notfound-404 h1 {
        font-size: 182px;
    }
}


/* ============Pagination=== */

.pagination-wrapper {
    text-align: center;
}

.pagination-wrapper .page-numbers {
    display: inline-block;
    margin: 5px;
    padding: 4px 12px;
    border: 1px solid #FF1046;
    color: #FF1046;
    text-decoration: none;
    border-radius: 4px;
    font-size: 20px;
    transition: all 0.5s;
}

.pagination-wrapper .page-numbers:hover {
    background: #FF1046;
    color: #fff;
}

.pagination-wrapper .page-numbers.current {
    background: #FF1046;
    color: #fff;
    font-weight: bold;
}

/* =========Soical Share icons========== */
ul.social-share-icon {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

ul.social-share-icon li {
    margin-right: 5px;
    display: inline;
}

ul.social-share-icon li a {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 1px;
    vertical-align: middle;
    font-size: 18px;
    border-radius: 16%;
    color: #fff;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

ul.social-share-icon li.share_icon {
    position: relative;
    margin-right: 10px;
}

ul.social-share-icon li.share_icon::before {
    content: '';
    position: absolute;
    top: 57%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 96%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 11px;
    border-color: transparent transparent transparent #e9e9e9;
}

ul.social-share-icon li.share_icon::after {
    content: '';
    position: absolute;
    top: 57%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 96%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #fff;
}

ul.social-share-icon li.share_icon a {
    color: #333;
    width: auto;
    height: auto;
    display: inline-block;
    border-radius: 4px 2px 2px 4px;
    padding: 3px 5px;
    cursor: default;
    font-size: 17px;
}

ul.social-share-icon li.fac_book a {
    color: #3b5999;
}

ul.social-share-icon li.fac_book a:hover {
    color: #fff;
    background-color: #3b5999;
}

ul.social-share-icon li.whats_app a {
    color: #7bbf6a;
}

ul.social-share-icon li.whats_app a:hover {
    color: #fff;
    background-color: #7bbf6a;

}

ul.social-share-icon li.twiter_x a {
    color: #333;
}

ul.social-share-icon li.twiter_x a:hover {
    color: #fff;
    background-color: #333;
}

ul.social-share-icon li.url_copy a {
    color: #333;
    font-size: 16px;
}

ul.social-share-icon li.url_copy a:hover {
    color: #fff;
    font-size: 16px;
    background-color: #333;
}


/* ==========Catagary Card Design===== */
.category-card-wrap {
    background-color: #fff;
    border-radius: 7px;
    transition: all 0.4s;
    overflow: hidden;
    box-shadow: 0 0 0 1px #e7e7e7;
}

.category-card-wrap:hover {
    transition: all .4s;
    transform: translateY(-5px);
}

.category-card-wrap .category-card-imgbox {
    border: 5px solid #fff;
    box-shadow: 0 0 0 1px #e7e7e7;
    position: relative;
    /* max-height: 150px; */
    overflow: hidden;
}

.category-card-wrap .category-card-imgbox a>img {
    /* object-fit: cover; */
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.category-card-wrap .category-card-imgbox:hover a>img {
    transform: scale(1.1);
}

.category-card-wrap .category-card-details {
    padding: 10px;
}

.category-card-wrap .category-card-details .category-main-title a {
    font-size: 16px;
    color: #ed3237;
    line-height: 1.1;
    transition: all 0.4;
}

.category-card-wrap .category-card-details .category-main-title a:hover {
    color: #0E38B1;
}

.category-card-wrap .category-card-details .category-icons-box {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 10px;
}

.category-card-wrap .category-card-details .category-icons-box span {
    color: #0D0E10;
    display: inline-block;
    padding: 2px;
    border-radius: 2px;
    font-size: 15px;
}

.category-card-wrap .category-card-details .category-icons-box span.heart-icon {
    cursor: pointer;
}

.heart-icon.liked i {
    color: green;
}

/* =============Home Service Full Card======== */
.homepage-serviefull-card {
    display: block;
}

.homepage-serviefull-card .servicefull-images,
.homepage-serviefull-card .service-info {
    width: 100%;
}

.homepage-serviefull-card .service-info {
    padding: 5px 10px;
}

.homepage-serviefull-card .service-info .text-para {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-slide-btn-wrp {
    position: relative;
    top: 35px;
}

/* Hide Swiper default arrow */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
}

/* Prev/Next common style */
.swiper-button-prev,
.swiper-button-next {
    background: var(--blue-color);
    border-radius: 4px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
    cursor: pointer;
    transition: background 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--orange-color);
}

.swiper-button-prev i,
.swiper-button-next i {
    font-size: 16px;
    color: var(--white-color);
}

/* Position adjust */
.swiper-button-prev {
    left: calc(100% - 75px);
}

.swiper-button-next {
    right: 0;
}

/* ==============Sidebar sub category menu==== */
.sidebar-menu {
    display: none;
}

@media(max-width:768px) {

    .sidebar-cagegory {
        position: fixed;
        top: 100px;
        width: 100%;
        z-index: 99;
    }

    .sidebar-cagegory .sidebar-menu {
        display: block;
        background: rgba(237, 50, 68, 1);
        background: linear-gradient(90deg, rgba(237, 50, 68, 1) 0%, rgb(20, 117, 188) 78%);
        padding: 5px 15px;
    }

    .sidebar-cagegory .sidebar-menu .sidebar-icons {
        display: inline-block;
        background-color: var(--white-color);
        width: 25px;
        height: 25px;
        text-align: center;
        line-height: 25px;
        border-radius: 4px;
        font-size: 20px;
        cursor: pointer;
    }

    .sidebar-cagegory .icons-close {
        display: none;
    }

    .sidebar-cagegory ul.sub-cat-menu-bar {
        display: none;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        height: calc(100vh - 100px);
        overflow-y: scroll;

    }
}

/* =====page 404== */
.page-wrap-404 {
    background-color: #ffffff;
    -webkit-background-size: 50px 50px;
    -moz-background-size: 50px 50px;
    background-size: 50px 50px;
    background-image:
        -webkit-linear-gradient(45deg, #1475BC33 25%, transparent 25%,
            transparent 50%, #1475BC33 50%, #1475BC33 75%,
            transparent 75%, transparent);
    border-radius: 10px;
    display: flex;
    min-height: 400px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-wrap-404 .page-text-404 {
    font-size: 14rem;
    font-weight: 700;
    color: var(--orange-color);
    text-shadow: 4px 4px 0 #fff, -4px -4px 0 #fff, -4px 4px 0 #fff, 4px -4px 0 #fff, 4px 4px 4px #666, -4px -4px 4px #666, -4px 4px 4px #666, 4px -4px 4px #666;
    line-height: 100%;
}

.page-wrap-404 .text-page-not-found {
    background-color: var(--orange-color);
    font-size: 32px;
    padding: 5px 10px;
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 4px 4px 0 #fff, -4px -4px 0 #fff, -4px 4px 0 #fff, 4px -4px 0 #fff, 4px 4px 4px #666, -4px -4px 4px #666, -4px 4px 4px #666, 4px -4px 4px #666;
}

@media(max-width:576px) {
    .page-wrap-404 .page-text-404 {
        font-size: 7rem;
    }

    .page-wrap-404 .text-page-not-found {
        font-size: 18px;
    }
}


/* ======Related post==== */
.related-posts {
    padding: 20px 15px;
}

.related-posts .related-post-title {
    font-size: 22px;
    font-weight: 700;
    margin-left: 5px;
}

.card-viewbtn-details {
    text-align: end;
    margin-bottom: 10px;
}

.card-viewbtn-details-home {
    text-align: end;
    margin-bottom: 10px;
}

.card-viewbtn-details-home a {
    background-color: var(--blue-color);
    border: 1px solid var(--blue-color);
}


.wp-block-embed__wrapper iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    /* responsive height */
}

.wp-block-embed iframe {
    width: 100%;
}

.cardbox-container {
    display: flex;
    margin-bottom: 20px;
    align-content: center;
}

.card-box {
    border-radius: 40px;
    background: #ff10460d;
    color: var(--orange-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 16px 8px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    border: 1px dashed var(--orange-color);
    transition: all 0.5s;
}

.card-box:hover {
    opacity: 0.90;
    background: #ff10460d;
    color: var(--orange-color);
}



.details-pages .page-content details {
    position: relative;
    counter-increment: qa-counter;
    margin-bottom: 20px;
    background: #FFFFFF;
    border: 1px dashed #ff1046;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
    overflow: hidden;
    display: none;
}


.details-pages .page-content details summary {
    position: relative;
    padding: 14px 16px;
    list-style: none;
    background: linear-gradient(#ff104614, #1475bc1a);
    font-weight: 700;
}

.details-pages .page-content details[open] summary {
    border-bottom: 1px dashed #ff1046;
}

.details-pages .page-content details summary::before {
    content: "Q" counter(qa-counter) ".";
    background: #ff104624;
    padding: 5px;
    color: #ff1046;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
    margin-right: 10px;
}

.details-pages .page-content details>div.wp-block-group {
    padding: 20px;
}

.details-pages .loadmore-detailsbtn {
    background: #ff104624;
    background: linear-gradient(#ff104614, #1475bc1a);
    padding: 8px 12px;
    color: #ff1046;
    border: 1px dashed #ff1046;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
    border-radius: 5px;
}