﻿header {
    z-index: 99999999;
    position: fixed;
    width: 100%
}

.ci-apply-btn {
    border: 0.0625rem solid var(--gold-500);
    background: rgba(0, 0, 0, 0.25);
    border-radius: 0.125rem;
    transition: background 0.25s ease, border-color 0.25s ease;
}

    .ci-apply-btn:hover {
        background: var(--gold-500);
        border-color: var(--gold-500);
    }

/* ---- Navbar link hover + active (current page) indication ---- */
.ci-nav-link {
    position: relative;
    padding-bottom: 0.35rem;
    transition: color 0.25s ease;
}

    /* gold underline jo hover/active par left-to-right grow hoti hai */
    .ci-nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 0.125rem;
        width: 100%;
        background: var(--gold-500);
        border-radius: 0.125rem;
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform 0.28s ease;
    }

    .ci-nav-link:hover,
    .ci-nav-link:focus-visible,
    .ci-nav-link.active {
        color: var(--gold-500) !important;
    }

        .ci-nav-link:hover::after,
        .ci-nav-link:focus-visible::after,
        .ci-nav-link.active::after {
            transform: scaleX(1);
        }

/* ---- Footer hover interactions ---- */
.footer-social-link a i {
    transition: transform 0.25s ease, color 0.25s ease;
    display: inline-block;
}

.footer-social-link a:hover i {
    transform: translateY(-0.25rem) scale(1.15);
    color: var(--gold-500) !important;
}

.footer-quick-link ul li a {
    display: inline-block;
    transition: transform 0.25s ease, color 0.25s ease;
}

    .footer-quick-link ul li a:hover {
        transform: translateX(0.35rem);
        color: var(--gold-500) !important;
    }

.footer-map iframe {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .footer-map iframe:hover {
        transform: scale(1.06);
        box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
    }

/* ============================================================
   Header "Quick Links" dropdown — HOVER par 3D unfold + cascade
   (display:none ki jagah transforms -> animate ho sake)
   Sirf desktop (hover-capable, >=992px). Mobile click behavior intact.
   ============================================================ */
@media (hover: hover) and (min-width: 992px) {

    .quick-links-dropdown {
        perspective: 1200px;          /* 3D unfold ke liye depth */
    }

    .quick-links-dropdown .header-quicklink {
        display: block;               /* global.css ke display:none ko override */
        opacity: 0;
        visibility: hidden;
        transform-origin: top center;
        transform: rotateX(-88deg) translateY(0.5rem);   /* upar se folded */
        pointer-events: none;
        box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.35);
        border-radius: 0.25rem;
        transition: opacity 0.3s ease,
                    transform 0.5s cubic-bezier(0.22, 1.15, 0.36, 1),
                    visibility 0s linear 0.5s;
    }

    /* hover (ya JS-driven .show) par unfold ho ke khulta hai */
    .quick-links-dropdown:hover .header-quicklink,
    .quick-links-dropdown .header-quicklink.show {
        opacity: 1;
        visibility: visible;
        transform: rotateX(0deg) translateY(0);
        pointer-events: auto;
        transition: opacity 0.3s ease,
                    transform 0.55s cubic-bezier(0.22, 1.15, 0.36, 1),
                    visibility 0s linear 0s;
    }

    /* andar ke links ek-ek karke BOUNCE ke saath aate hain */
    .quick-links-dropdown .header-quicklink li {
        opacity: 0;
        transform: translateX(-1rem);
        transition: opacity 0.35s ease,
                    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .quick-links-dropdown:hover .header-quicklink li,
    .quick-links-dropdown .header-quicklink.show li {
        opacity: 1;
        transform: translateX(0);
    }

        /* stagger delays (7 links) */
        .quick-links-dropdown:hover .header-quicklink li:nth-child(1) { transition-delay: 0.10s; }
        .quick-links-dropdown:hover .header-quicklink li:nth-child(2) { transition-delay: 0.15s; }
        .quick-links-dropdown:hover .header-quicklink li:nth-child(3) { transition-delay: 0.20s; }
        .quick-links-dropdown:hover .header-quicklink li:nth-child(4) { transition-delay: 0.25s; }
        .quick-links-dropdown:hover .header-quicklink li:nth-child(5) { transition-delay: 0.30s; }
        .quick-links-dropdown:hover .header-quicklink li:nth-child(6) { transition-delay: 0.35s; }
        .quick-links-dropdown:hover .header-quicklink li:nth-child(7) { transition-delay: 0.40s; }

    /* har link par GOLD slide-fill + text right shift on hover */
    .quick-links-dropdown .header-quicklink li a {
        position: relative;
        overflow: hidden;
        z-index: 0;
        transition: padding-left 0.28s ease, color 0.25s ease;
    }

        /* left se gold gradient andar slide hota hai */
        .quick-links-dropdown .header-quicklink li a::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(90deg, rgba(216, 168, 38, 0.30), rgba(216, 168, 38, 0));
            transform: translateX(-100%);
            transition: transform 0.32s ease;
        }

        /* left edge par gold bar */
        .quick-links-dropdown .header-quicklink li a::after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 0.1875rem;
            height: 0;
            background: var(--gold-500);
            transform: translateY(-50%);
            transition: height 0.28s ease;
        }

        .quick-links-dropdown .header-quicklink li a:hover {
            color: var(--gold-500) !important;
            padding-left: 2rem !important;
        }

            .quick-links-dropdown .header-quicklink li a:hover::before {
                transform: translateX(0);
            }

            .quick-links-dropdown .header-quicklink li a:hover::after {
                height: 60%;
            }

    /* caret hover par 180 ghoom jaata hai */
    #quickLinksDropdown .bi-caret-down-fill {
        transition: transform 0.3s ease;
    }

    .quick-links-dropdown:hover #quickLinksDropdown .bi-caret-down-fill {
        transform: rotate(180deg);
    }
}

.ci-hero {
    padding-top: 11.625rem;
    padding-bottom: 4.125rem;
    position: relative;
    background-image: url('/images/banner/home-banner.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    transition: background-image 0.6s ease-in-out;
}

.ci-hero-slide-content {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

    .ci-hero-slide-content.fade-out {
        opacity: 0;
        transform: translateY(20px);
    }

    .ci-hero-slide-content.fade-in {
        opacity: 1;
        transform: translateY(0);
    }

.ci-cta-strip {
    border: 0.0625rem solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(35px) brightness(0.8);
    position: relative;
}

.ci-cta-item {
    border-right: 0.0625rem solid rgba(255, 255, 255, 0.12);
    padding-top: 2.175rem;
    padding-bottom: 2.175rem;
}

    .ci-cta-item:last-child {
        border-right: 0;
    }

.ci-hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease
}

    .ci-hero-dots .dot.active {
        background: #fff;
        transform: scale(1.15);
    }

.ci-hero-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1.5rem;
    border: 1px solid #973D17;
    background: #973D17;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 33px !important
}

    .ci-hero-link-btn:hover {
        color: white !important
    }

@media (max-width: 767.98px) {
    .ci-cta-item {
        border-right: 0;
        border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.12);
    }

    .ci-cta-strip .col-md-4:last-child .ci-cta-item {
        border-bottom: 0;
    }

    .ci-hero p {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.ci-cta-strip {
    border: 0.0625rem solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(35px) brightness(0.8);
    position: relative;
}

    .ci-cta-strip::after {
        content: url(/images/themes/ring-arrow.png);
        top: -53px;
        left: 161px;
        position: absolute;
    }

.ci-cta-item {
    border-right: 0.0625rem solid rgba(255, 255, 255, 0.12);
    padding-top: 2.175rem;
    padding-bottom: 2.175rem;
}

.hmp-second {
    background: var(--gray-100);
}

.hmp-second-sign {
    height: 2rem;
    width: auto;
}

.hmp-card {
    background: rgba(255, 255, 255, 0.55);
    border: 0.0625rem solid rgba(0, 0, 0, 0.18);
    border-radius: 8.25rem;
    height: 100%
}

.hmp-second-arrow {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    background: transparent;
    color: var(--gray-400);
    font-size: 1.5rem;
    cursor: pointer;
}

.hmp-second-arrow-left {
    left: -0.25rem;
}

.hmp-second-arrow-right {
    right: -0.25rem
}

.hlss-card {
    padding: 2.5rem;
    position: relative
}

    .hlss-card::after {
        position: absolute;
        content: url(/images/themes/hsll-card-after.png);
        right: 0;
        top: 0;
    }

.hmp-four {
    background-color: #D9D2C4;
    background-image: url(/images/themes/hmp-four-bg.png);
    background-repeat: no-repeat;
    background-position: right;
}

.hmp-four-card {
    background-color: #EDEDED;
    width: 62%;
    margin-bottom: 32px
}

    .hmp-four-card .border-right img {
        max-height: 40px;
    }

    .hmp-four-card .border-right {
        border-right: 1px solid #C4BABA;
    }

.hmp-five-sign {
    height: 2rem;
    width: auto;
}

.hmp-five-steps {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.hmp-five-pill {
    width: 100%;
    max-width: 26rem;
    background: rgba(240, 240, 240, 0.65);
    border-radius: 6.25rem;
    padding: 1.25rem 1.75rem;
}

.hmp-five-num {
    min-width: 2.25rem;
    color: var(--black);
}

.hmp-bottom {
    background-color: #D9D2C4;
    padding: 13rem 6rem 6rem
}

.hmp-six-middle {
    top: 26%;
    position: absolute;
}

/* ================================ COMMON FAQ (Add to style.css) ================================ */

.ci-faq-sign {
    height: 2rem;
    width: auto;
}

.ci-faq-item {
    border: 0;
    background: white;
    margin-bottom: 1.5rem;
}

.accordion-header {
    border: none !important;
}

.ci-faq-btn {
    background: transparent;
    border-radius: 0.5rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
    padding: 1.15rem 1.25rem;
}

    .ci-faq-btn:focus {
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
    }

    .ci-faq-btn:not(.collapsed) {
        color: var(--black);
        background: transparent;
    }

    .ci-faq-btn::after {
        background-size: 1rem;
    }

.ci-faq-q {
    color: var(--black);
}

.ci-faq-acc .accordion-body {
    background: transparent;
    padding: 0rem 1.25rem 0.5rem;
}

.ci-faq-divider {
    width: 100%;
    border-bottom: 0.0625rem dashed rgba(0, 0, 0, 0.25);
}

.accordion-item {
    background-color: white !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
    border-radius: .25rem !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.ci-hero.about-us {
    background-image: url(/images/banner/about-us-banner.png);
}

.hmp-about {
    background-image: url(/images/themes/about-second-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: right;
}

.hmp-about-img-wrap::after {
    content: '';
    position: absolute;
    border: 5px solid #973D17;
    height: 100%;
    right: 60px;
    top: 0
}

.hmp-about-3 {
    background: #d9d0c2;
}

.hmp-about3-item {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    margin-top: 3rem
}

    .hmp-about3-item.after::after {
        content: '';
        position: absolute;
        right: 20px;
        height: 124px;
        top: 0;
        border: 1px dashed #000000;
    }

.ci-hero.make-payment {
    background-image: url(/images/banner/make-payment-banner.png);
}

.mk-pay-second {
    background-color: #EEEEEE;
}

.mk-form-wrapper {
    padding: 24px 0px 50px 0px;
}

    .mk-form-wrapper.faq {
        background: #f1f1f1;
        padding-top: 0px !important;
    }

.float-label label {
    left: 12px;
    top: -17px;
    padding: 0px 9px;
    background-color: white;
    z-index: 999;
}

.mk-form-wrapper.faq .float-label label {
    background-color: #f1f1f1
}

.float-label .form-control {
    padding: 12px 20px;
    border: 1px solid black
}

.mk-form-wrapper.faq .float-label .form-control {
    background-color: transparent !important
}

.mk-form-wrapper .form-group {
    margin-bottom: 34px
}

.form-control:focus {
    box-shadow: none;
}

.mk-payment-main .ci-faq-item {
    margin-bottom: 34px;
}

.mk-payment-main iframe {
    min-height: 345px;
}

.bg-blur {
    background: #3d2d21;
}

    .bg-blur a:hover {
        color: white;
        background-color: transparent;
    }

.ci-hero.buy-certificate {
    background-image: url(/images/banner/buy-certificate-banner.png );
}

.cert-tab-card {
    padding: 20px 20px 10px;
    border: 1px solid #a34e2a;
    border-radius: 10px;
    background-color: white;
    width: 160px;
    height: 133px;
    cursor: pointer;
}

    .cert-tab-card.selected {
        background: #a34e2a;
        color: #fff;
    }

        .cert-tab-card.selected img, .cert-tab-card.selected p {
            filter: brightness(0) invert(1);
        }

    .cert-tab-card:hover img, .cert-tab-card:hover p {
        filter: brightness(0) invert(1);
    }

.btw-tab-content {
    padding: 23px 35px;
    background: #f3f3f3 0% 0% no-repeat padding-box;
    border: 2px solid #f3f3f3;
    border-radius: 20px;
    margin-top: -2px;
}

.cert-tab-card:hover {
    background-color: #a34e2a;
}

    .cert-tab-card.selected::after, .cert-tab-card:hover::after {
        content: url(/images/icons/checkmark-white.png);
        position: absolute;
        top: 9px;
        right: 7px;
    }

.cert-tab-card p {
    position: absolute;
    bottom: 12px;
    left: 8%;
    right: 8%;
    line-height: 1.1;
}

.buy-tab-wrapper ul li button {
    padding: 12px 30px !important;
    border: none !important;
}

    .buy-tab-wrapper ul li button:hover, .buy-tab-wrapper ul li button.active {
        padding: 12px 30px;
        background: #f3f3f3 !important;
        border-bottom: none !important;
        color: #595959 !important;
        border-radius: 10px;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }

.classify-sec .cls-card {
    background: #DBDBDB 0% 0% no-repeat padding-box;
    border: 1px solid #a34e2a !important;
    cursor: pointer;
    padding: 12px 8px !important;
}

.cls-card.selected {
    background: #a34e2a !important;
    color: #fff;
}

    .cls-card.selected::after, .cls-card:hover::after {
        content: url(/images/icons/checkmark-white.png);
        position: absolute;
        top: 2px;
        right: 0px;
    }

    .cls-card.selected img,
    .cls-card.selected span,
    .cls-card:hover img,
    .cls-card:hover span {
        filter: brightness(0) invert(1);
    }

.cls-card:hover {
    background: #a34e2a !important;
    color: #fff;
    cursor: pointer;
}

.cls-card {
    background: #DBDBDB 0% 0% no-repeat padding-box;
    padding: 12px 8px !important;
    border: 1px solid #424242 !important;
}

.buy-tab-wrapper .nav-tabs {
    border: none !important;
}

.hmp-pay-card {
    border: 0.0625rem solid rgba(0, 0, 0, 0.10);
    border-radius: 0.125rem;
}

.hmp-assist-box {
    background: #f3f3f3;
    border-radius: 0.125rem;
}

.hmp-assist-tbl th {
    font-size: 1.1rem;
    color: var(--gray-700);
    background: #d9d0c2;
    border: 0.0625rem solid rgba(0, 0, 0, 0.12);
    padding: 0.75rem 0.75rem;
    vertical-align: middle;
}

.hmp-assist-tbl td {
    font-size: 1.1rem;
    color: black;
    border: 0.0625rem solid rgba(0, 0, 0, 0.12);
    padding: 0.65rem 0.75rem;
    vertical-align: middle;
    background: #fff;
    font-weight: 500;
}

    .hmp-assist-tbl td h3 {
        font-size: 1.1rem;
        color: black;
    }

.hmp-assist-tbl th p {
    font-size: 1.1rem;
    color: black;
}

.hmp-th-left {
    width: 58%;
}

.hmp-ok {
    color: #18a558;
    font-size: 1.325rem;
}

.hmp-no {
    color: #e11d48;
    font-size: 1.325rem;
}

.hmp-dsc-services {
    background: #d9d0c2;
}

.hmp-dsc-card {
    border: 0.0625rem solid rgba(0, 0, 0, 0.10);
}

.hmp-dsc-item {
    padding: 1.25rem 1.25rem 1.1rem;
}

.hmp-dsc-btn {
    border-radius: 0.25rem;
    font-size: var(--fs-xs);
}

@media (min-width: 48rem) {
    .hmp-dsc-mid {
        border-left: 0.0625rem solid rgba(0, 0, 0, 0.10);
        border-right: 0.0625rem solid rgba(0, 0, 0, 0.10);
    }
}

.hmp-dsc-hr {
    height: 0.0625rem;
    background: rgba(0, 0, 0, 0.10);
}

.buy-certi-sixth .bcs-card {
    border: 0.0625rem solid rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.buy-certi-sixth .bcs-gray {
    background: #e9e9e9;
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.15);
}

.buy-certi-sixth .bcs-ul {
    padding-left: 0;
    list-style: none;
}

    .buy-certi-sixth .bcs-ul li {
        position: relative;
        padding-left: 1rem;
        margin-bottom: 0.45rem;
    }

        .buy-certi-sixth .bcs-ul li:last-child {
            margin-bottom: 0;
        }

        .buy-certi-sixth .bcs-ul li::before {
            content: "›";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gray-600);
        }

.buy-certi-sixth .bcs-inner {
    background-image: url(/images/themes/bsc-inner.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.bsc-inner-container div {
    backdrop-filter: blur(15px)brightness(.8);
    border: 1px solid #6E6E6E
}

.buy-certi-sevent {
    background: #d9d0c2;
}

    .buy-certi-sevent .bcs-video {
        width: 100%;
        max-width: 34rem;
        aspect-ratio: 16 / 9;
        border: 0.25rem solid rgba(0, 0, 0, 0.85);
        background: #000;
        overflow: hidden;
    }

.header-menu li a:hover {
    color: white !important;
    ;
    transition: all .3s ease-in-out;
}

.blog-card-content .badge {
    color: #108dc6;
    background: #d7eff9;
    border: 1px solid #9ad9f6;
    padding: 6px 15px;
    margin-bottom: 10px;
}

.blog-card-content {
    padding: 20px;
}

.blog-main {
    background-color: #EDEDED;
}

.blog-right {
    background-color: #EDEDED;
    padding: 50px 100px 50px 50px;
}

.blog-left {
    background-color: #d9d2c4;
    padding: 52px 60px;
}

.ds-floating-buy-dsc {
    background-color: white;
    padding: 26px 20px 60px 20px;
    position: sticky;
    top: 150px;
}

.ds-social-wrapper {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .4s ease-in-out;
}

.blog-card-top:hover .ds-social-wrapper {
    opacity: 1;
    transition: all .4s ease-in-out;
}

.ds-social-wrapper ul li {
    background-color: #A7B5BC;
    padding: 6px 10px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.blog-card {
    height: 100%;
}

.blog-inner-strip {
    padding: 21px 50px;
}

.blg-in-bottom {
    width: 100%;
    bottom: -50px;
    left: 0
}

.ci-hero.case-study {
    background: url(/images/banner/case-study-banner.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.case-study-form {
    background: #AD826F;
    background: radial-gradient(circle, rgba(173, 130, 111, 1) 0%, rgba(88, 55, 40, 1) 100%);
}

    .case-study-form .form-control {
        margin-bottom: 20px;
        background-color: #B49081;
        padding: .5rem 1rem;
        border: 1px solid #7B5748
    }

        .case-study-form .form-control::placeholder {
            color: white
        }

.card-inner {
    position: relative;
    width: inherit;
    height: 18.75rem;
    background: white;
    border-radius: 1.25rem;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.case-study-main .box {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
}

.case-study-main .imgBox {
    position: absolute;
    inset: 0;
}

.case-study-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-main .icon {
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 6rem;
    height: 6rem;
    background: white;
    border-top-left-radius: 50%;
}

    .case-study-main .icon:hover .iconBox {
        transform: scale(1.1);
    }

    .case-study-main .icon::before {
        position: absolute;
        content: "";
        bottom: 0.375rem;
        left: -1.25rem;
        background: transparent;
        width: 1.25rem;
        height: 1.25rem;
        border-bottom-right-radius: 1.25rem;
        box-shadow: 0.313rem 0.313rem 0 0.313rem white;
    }

    .case-study-main .icon::after {
        position: absolute;
        content: "";
        top: -1.25rem;
        right: 0.375rem;
        background: transparent;
        width: 1.25rem;
        height: 1.25rem;
        border-bottom-right-radius: 1.25rem;
        box-shadow: 0.313rem 0.313rem 0 0.313rem white;
    }

.case-study-main .iconBox {
    position: absolute;
    inset: 0.625rem;
    background: #ECDDB6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.bcs-page {
    padding: .6rem .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--gray-400);
    border-radius: 0.125rem;
}

    .bcs-page:hover {
        color: var(--gray-700);
    }

    .bcs-page.is-active {
        background: #111827;
        color: var(--white);
    }

        .bcs-page.is-active:hover {
            color: white !important;
        }

.case-study-main.inner {
    background-color: #ededed
}

.ssiw-left {
    background-image: url(/images/themes/contact-us-maincard-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-right: 2px solid #dddada;
}

.ssiw-top {
    padding: 62px 16px 16px 24px;
}

.cst-cont-wtp {
    background: white;
    height: 47px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    margin-right: 17px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

    .cst-cont-wtp i {
        color: #38120A;
        font-size: 28px;
    }

.cust-break {
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    max-width: 100%;
    min-width: 0;
    padding-right: 16px;
}

.contact-us-second {
    background-color: #D9D9D9
}

.contact-us-slider-section {
    background-color: #D9D2C4;
}

.cuss-slider-item {
    margin: 0 20px;
}

.ci-hero.product-service {
    background-image: url(/images/banner/product-service-bannr.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-bottom: 9rem;
}

.product-service-strip {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 18px;
    backdrop-filter: blur(30px) brightness(.7);
}

.pdst-card {
    padding: 0px 55px;
}

/* ================================ product-service-second ================================ */

.product-service-second {
    background: #d9d0c2;
}

    .product-service-second .product-service-box {
        border: 0.0625rem solid rgba(0, 0, 0, 0.10);
    }

    .product-service-second .ps-item {
        padding: 2rem 2.25rem;
    }

    .product-service-second .ps-hr {
        height: 0.0625rem;
        border-top: 0.0625rem dotted rgba(0, 0, 0, 0.22);
    }

@media (min-width: 62rem) {
    .product-service-second .ps-mid {
        border-left: 0.0625rem dotted rgba(0, 0, 0, 0.22);
        border-right: 0.0625rem dotted rgba(0, 0, 0, 0.22);
    }
}

.product-service-second .ps-link:hover {
    text-decoration: underline;
}

/* ================================ product-service-third add in style.css ================================ */

.product-service-third .ps3-left {
    padding: 1.5rem;
    background: #fff;
}

.product-service-third .ps3-video-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0.0625rem solid rgba(0, 0, 0, 0.18);
    background: #fff;
    overflow: hidden;
}

.product-service-third .ps3-blog-card {
    border: 0.0625rem solid rgba(0, 0, 0, 0.10);
}

.product-service-third .ps3-blog-img {
    height: 11rem;
    overflow: hidden;
}

    .product-service-third .ps3-blog-img img {
        object-fit: cover;
    }

.product-service-third .ps3-blog-img-placeholder {
    background: #7b6b6b;
}

.product-service-third .ps3-blog-slider .slick-list {
    margin: 0 -0.5rem;
}

.product-service-third .ps3-blog-slider .slick-slide {
    height: auto;
}

.bg-ligh-brown {
    background: linear-gradient(180deg, rgba(217, 217, 217, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.ci-hero.dsc-partner {
    background: #251A13;
    padding-bottom: 0px;
    padding-top: 6.625rem;
}

.dsc-banner-wrapper {
    background: radial-gradient(circle, rgba(173, 130, 111, 1) 0%, rgba(88, 55, 40, 1) 100%);
    transform: translateY(40px);
}

.dscbw-left {
    padding: 40px 75px;
}

.dscbw-right {
    padding: 16px 60px 24px;
    background: none !important;
}

.dsc-partner-second {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.dsc-partner-third {
    background: #efefef;
}

    .dsc-partner-third .dpt3-item {
        padding: 1.25rem 1.25rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
        background-color: white;
    }

.dsc-partner-four {
    background: #d9d0c2;
}

    .dsc-partner-four .dpf-video {
        width: 100%;
        max-width: 34rem;
        aspect-ratio: 16 / 9;
        border: 0.0625rem solid rgba(0, 0, 0, 0.25);
        box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.15);
        background: #fff;
        overflow: hidden;
    }

/* ================================dsc-partner-five================================ */

.dsc-partner-five .dpf5-card {
    border: 0.0625rem solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.10);
    margin: 0 16px;
}

.dsc-partner-five .dpf5-next {
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--gray-500);
}

.dsc-partner-five .dpf5-prev {
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--gray-500);
}

.dsc-partner-five .dpf5-next:hover {
    color: var(--gray-800);
}

.dsc-partner-six {
    background: #d9d9d9;
}

    .dsc-partner-six .dps6-no {
        font-size: 2.75rem;
        top: -27px;
        left: -55px;
    }

    .dsc-partner-six .dps6-pill {
        width: 100%;
        padding: 0.9rem 1.1rem;
        background: linear-gradient(90deg, #FFFFFF 0%, #F2F2F200 50%);
    }

.dpt3-item img {
    max-height: 52px;
}

.ci-hero.blog-inner {
    background-image: url(/images/banner/blog-inner-banner.png);
}

.privacy-wrapper {
    border: 1px solid #7C7C7C;
    border-radius: 20px;
    padding: 36px 44px
}

.privacy-section {
    background: #ededed;
}

.product-service-help {
   
    width: max-content;
}

    .product-service-help a:hover {
        color: white !important
    }

.hmp-dsc-item a {
    width: max-content;
}

.make-payment-second {
    background-image: url(/images/themes/make-second-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: #847B72
}

.modern-slider .item {
    margin: 0px 13px;
    background-image: url(/images/themes/mk-slider.png);
    background-repeat: no-repeat;
    background-size: 100% 100%
}

.modern-slider .img-fill {
    padding: 60px 46px
}

.payment-sucess-details {
    background-color: #F2F2F2;
    border: 1px solid #000000;
}

.no-whitespace {
    white-space: nowrap;
}

.btn-outline-red {
    border: 1px solid #973D17;
    color: #973D17
}

.payment-stepper {
    background-color: #D9D2C4;
    padding: 69px 24px;
}

    .payment-stepper ul li.active .pay-stepper-list-left {
        background-color: #973D17 !important;
    }

        .payment-stepper ul li.active .pay-stepper-list-left img {
            filter: brightness(0) invert(1) !important;
        }

    .payment-stepper ul li .pay-stepper-list-left {
        height: 75px;
        width: 75px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .payment-stepper ul li {
        margin-bottom: 40px;
    }

        .payment-stepper ul li .pay-stepper-list-left.after-line::after {
            content: '';
            position: absolute;
            border: 1px dotted #000000;
            left: 50%;
            top: 103%;
            transform: translateX(-50%);
            height: 36px;
        }

.select-tbr-card {
    padding: 22px 0px 10px 25px;
    border-radius: 5px;
    border: 1px solid #000000;
    cursor: pointer;
}

.tbr-card-left {
    flex-basis: 63%;
}

.tbr-card-right {
    flex-basis: 36%;
}

.select-br-card-check {
    content: '';
    top: -17px;
    left: -17px;
    background-color: #E2E2E2;
    border-radius: 4px;
    height: 35px;
    width: 35px;
}

.select-tbr-card:hover .select-br-card-check {
    background-color: #70AD1B !important
}

.select-tbr-card:hover::after {
    content: url(/images/icons/white-tick.png);
    position: absolute;
    top: -10px;
    left: -7px;
}

.token-qty-card {
    background-color: #F3F3F3;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    padding: 22px 16px;
    cursor: pointer;
}

    .token-qty-card hr {
        color: #CDCDCD;
        height: 2px;
    }

.token-qty-bottom p, .text-red {
    color: #923D3D
}

.token-qty-card.active, .token-qty-card:hover {
    background-color: #973D17;
    transition: all .3s ease-in;
}
.custom-qty-wrapper img, .token-qty-card img {
    max-width: 47px;
    max-height: 47px;
}
    /*.token-qty-card.active img, .token-qty-card:hover img {
        filter: invert(100%);
        transition: all .3s ease-in;
    }*/
    .token-qty-card.active .color-dark, .token-qty-card:hover .color-dark {
        color: white !important;
        transition: all .3s ease-in;
    }

    .token-qty-card.active .token-qty-bottom p, .token-qty-card:hover .token-qty-bottom p {
        color: white;
        transition: all .3s ease-in;
    }

.custom-qty-wrapper {
    background-color: #FEFEFE;
    border: 1px solid black;
    border-radius: 5px;
    padding: 23px 26px
}

.bg-light-red {
    background-color: #CFB5A9;
    border: 1px solid #CFB5A9
}

.ds-pt-98 {
    padding-top: 98px;
}

.pdst-card a:hover {
    color: white !important;
}

.ord-det-inner h3 {
    background: linear-gradient(90deg,rgba(230, 192, 176, 1) 0%, rgba(246, 239, 239, 1) 100%);
    margin-bottom: 16px;
    margin-left: -24px;
}

.payment-stepper ul li.active .pay-stepper-list-left p {
    color: white !important;
}
.order-detail-wrapper{width:50%}

.ps3-blog-slider .slick-track, .dpf5-slider .slick-track {
    display: flex !important;
}
.product-service-third .ps3-blog-slider .slick-slide, .dpf5-slider .slick-slide {
    height: 100%;
    height: auto !important;
    display: flex !important;
}
.hmp-card  a{
    width:max-content;
    margin: 0 auto;
}
.hmp-slider-one .slick-track {
    display: flex !important;
    align-items: stretch;
}

.hmp-slider-one .slick-slide {
    height: auto !important;
}

.hmp-slider-one .slick-slide > div {
    height: 100%;
}

.hmp-slider-one .slide-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hmp-slider-one .slick-prev:before,.hmp-slider-one .slick-next:before{
    font-size: 29px;
        border-radius: 50%;
        padding: 6px;
            background: white;

    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
    }
#tooltip-box {
    position: absolute;
    z-index: 9999;
    padding: 10px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none;
    width: 220px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}



.cust-map-tooltip {
    padding: 12px 25px;
}

.gradient-green {
    background: linear-gradient(90deg, #B1E4AE 26%, white 78%);
    padding: 3px 12px
}

.estamp-seven-right {
    transform: scale(.8)
}

.map-negative {
    margin-top: -98px
}
.estamp-seven-right::after {
    content: '';
    position: absolute;
    z-index: 101 !important;
    left: 0;
    bottom: 0;
    background: white;
    width: 200px;
    height: 20px;
}

.fm-map-container a[attribute="value"] {
    display: none !important
}