/********** Custom CSS **********/
:root {
    --primary: #f2ba3d;
    --secondary: #f78048;
    --light: #FFF;
    --dark: #181d38;
    --default: #212529;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
}
body{
    overflow-x:hidden;
}
.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.ptb-12 {
    padding: 12px 0;
}

.bg-fffbf4 {
    background-color: #fffbf4;
}

.bg-video {
    background: linear-gradient(rgba(255, 246, 241, 0.2), rgba(255, 246, 241, 0.2)), url(../img/body-bg1.png);
    background-position: center;
}

.ht-btn,
.ht-btn2 {
    overflow: hidden;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #000;
    /* border-bottom-width: 4px; */
    border-radius: 50px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 800ms;

    &::before {
        content: "";
        position: absolute;
        width: 0;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background: var(--primary);
        transition: width 800ms;
    }

    i {
        color: #000;
        transition: all 0.4s;
    }

    &:hover {
        color: #fff;

        &::before {
            width: 100%;
        }

        i {
            transform: rotate(-45deg);
            filter: brightness(100%) invert(1);
        }
    }
}

.ht-btn2 {
    overflow: hidden;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    background-color: #fff;
    padding: 15px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
}

.ht-btn::before,
.ht-btn2::before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 0px;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: var(--primary);
}

.global-btn {
    position: relative;
    z-index: 2;
    vertical-align: middle;
    display: inline-block;
    border: none;
    border-radius: 10px;
    text-align: center;
    background-color: var(--primary);
    color: var(--light);
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    line-height: 1;
    padding: 15px 20px;
    overflow: hidden;
    transition: 0.3s;
}

.global-btn.style-border {
    color: var(--light);
    border: 1px solid var(--light);
    background: transparent;
}

.global-btn.style-border:before,
.global-btn.style-border:after {
    background: var(--secondary);
}

.global-btn:after,
.global-btn:before {
    content: "";
    width: 50%;
    height: 0;
    background: var(--secondary);
    border-radius: 10px 0 0 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.3s;
}

.global-btn:after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    border-radius: 0 10px 10px 0;
}

.global-btn.style-border:active,
.global-btn.style-border:focus,
.global-btn.style-border:hover {
    color: var(--light);
}

.global-btn:focus:after,
.global-btn:focus:before,
.global-btn:hover:after,
.global-btn:hover:before,
.global-btn:active:after,
.global-btn:active:before {
    height: 100%;
}

/* .aspect_ratio {
    aspect-ratio: 16 / 9 !important;
} */
.text-orange {
    color: var(--secondary) !important;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.header-shadow {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.call-fixed {
    position: fixed;
    display: none;
    left: 10px;
    bottom: 20px;
    z-index: 99;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.img-fluid {
    width: 100%;
    display: block;
    height: auto;
}

.main-header {
    background: var(--secondary);
}

/*** Button ***/
.profile-icon {
    background: #eee;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    color: var(--secondary);
}

.border-padding-btn {
    border-radius: 5px;
    padding: 8px 15px;
}

.border-primary {
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
}

.btn {
    font-family: 'Rubik', sans-serif;
    transition: .5s;
}

@media (max-width: 768px) {
    .puja-card {
        padding: 10px;
    }

    .btn {
        padding: 5px;
        font-size: 10px;
    }

    .puja-title {
        font-size: 14px;
        margin: 5px 0;
    }
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 50px;
    height: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

/*** Navbar ***/

.navbar-light .navbar-nav .nav-link {
    margin-right: 5px;
    padding: 15px 8px;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: capitalize;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 400;
}

.navbar-light.sticky-top {
    /* top: -100px; */
    transition: .5s;
}

.dropdown .dropdown-menu {
    max-height: 400px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dropdown .dropdown-menu::-webkit-scrollbar {
    display: none;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
        border-top: 3px solid var(--secondary);
        border-radius: 5px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    }
}

.navbar-nav .dropdown-menu .dropdown-item {
    font-size: 14px;
}

.circle-round {
    position: relative;
    text-align: center;
    display: block;
    width: 100%;
    margin-top: -20px;
}

.circle-round img {
    width: 60%;
    animation: imgRotate 20s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

.page-header {
    background: linear-gradient(rgb(13 15 29 / 80%), rgb(14 17 32 / 80%)), url(../img/breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--dark);
}


/*** Section Title ***/
.section-title-side h6 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin: 0 auto 50px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    font-size: 26px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    position: relative;
    text-align: center;
}

.section-title h6 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin: 0 auto 50px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    padding: 12px 10px 10px;
    font-size: 26px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--secondary);
}

.heading-border-line {
    position: relative;
}

.heading-border-line:before {
    content: "";
    width: 12px;
    height: 4px;
    background: var(--secondary);
    position: absolute;
    bottom: -22px;
    left: 50%;
    margin-left: -35px;
    transform: translateX(-50%);
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
    margin-bottom: 10px;
}

.heading-border-line:after {
    content: "";
    width: 65px;
    height: 4px;
    background: var(--secondary);
    position: absolute;
    bottom: -22px;
    right: 0;
    left: 50%;
    margin-left: -20px;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 0;
    margin-bottom: 10px;
}

/*** Service ***/
.service-item {
    background-color: var(--light);
    padding: 20px 30px;
    border-top: 1px solid color-mix(in srgb, var(--default), transparent 90%);
    border-left: 1px solid color-mix(in srgb, var(--default), transparent 90%);
    position: relative;
}

.service-item .number {
    position: absolute;
    right: 10px;
    top: 10px;
    font-weight: 400;
    color:
        color-mix(in srgb, var(--default), transparent 80%);
    font-size: 20px;
}

.service-item .service-item-icon img {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-item .service-item-content .service-heading {
    font-size: 20px;
    color: var(--default);
    font-weight: 400;
}

.service-item .service-item-content p {
    font-size: 15px;
}

@media (min-width: 769px) {
    [class^=col-]:nth-child(4n+4) .service-item {
        border-right: 1px solid color-mix(in srgb, var(--default), transparent 90%);
    }
}

@media (min-width: 769px) {
    [class^=col-]:nth-last-child(-n+4) .service-item {
        border-bottom: 1px solid color-mix(in srgb, var(--default), transparent 90%);
    }
}

/*** Categories & blog ***/
.blog-item {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 3px 4px 29.6px 0px #0000000F;
    border-radius: 7px;
}

.blog-img {
    position: relative;
    overflow: hidden;
    border-radius: 7px 7px 0 0;
}

.blog-item .blog-content {
    text-align: start;
    padding: 15px;
}

.blog-item .blog-content h6 {
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    color: #333;
    line-height: 30px;
}

.blog-meta {
    background-color: #F9F9F6;
    border-bottom: 1px solid #eee;
    border-image: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-radius: 0 0 7px 7px;
}

.list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none;
    margin-bottom: 0;
}

.list-inline li {
    border-right: 1px solid #ddd;
    color: #666;
    font-size: 12px;
    padding: 10px 6px 10px 10px;
}

.list-inline li i {
    color: var(--secondary);
}

.list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}

.blog-meta li:last-child {
    border-right: medium none;
}

.category img,
.blog-item img {
    object-fit: cover;
    max-height: 220px;
    transition: .5s;
}

.category a:hover img,
.blog-item:hover img {
    border-radius: 7px 7px 0 0;
    transform: scale(1.1);
}

.product-item .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.product-item img {
    max-height: 200px;
    object-fit: cover;
    transition: .5s;
    border-radius: 6px 6px 0 0;
}

.product-item:hover img {
    transform: scale(1.1);
}

.cat-card {
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: white;
    transition: transform 0.3s ease;
}

.cat-card:hover {
    transform: translateY(-5px);
}

.cat-img {
    border-radius: 7px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cat-content {
    padding: 20px;
    overflow: hidden;
}

.product-bg {
    background-color: #fffefa;
    border-radius: 7px;
}

.product-bg img {
    border-radius: 7px 7px 0 0;
    transition: transform 0.5s ease;
}

.product-bg img:hover {
    transform: scale(1.1);
}

.border-pro {
    border: 1px solid #eeee;
}

.product-card {
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    background: white;
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(243, 196, 89, 0.25), 0 1.5px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px) scale(1.03);
}

.product-card img {
    max-height: 150px;
    object-fit: contain;
}

.category-btn {
    background-color: #f4f6f8;
    border-radius: 50px;
    padding: 5px 20px;
    border: 1px dashed var(--primary);
}

.category-btn.active {

    color: #fff;
    background-color: var(--secondary);
}

.wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 25px;
}

/*** Team ***/
.store-item {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border-radius: 5px;
}

.store-item img {
    width: 100%;
    height: 250px;
    transition: .5s;
}

.store-item small {
    font-size: smaller;
}

.store-item:hover img {
    transform: scale(1.1);
}

.f-50 {
    font-size: 50px;
}

.f-13 {
    font-size: 13px;
}

/*** CLient Review ***/
.quote-icon {
    width: 30px !important;
    height: auto;
    position: absolute;
    bottom: 70px;
    right: 10px;
}

.bg-warn {
    background: #fffffa;
    border-radius: 7px;
    border: 1px solid #ffe2c4;
}

/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-item .inner-box {
    position: relative;
    background-color: var(--light);
    /* -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1); */
    box-shadow: 3px 4px 29.6px 0px #0000000F;
    padding: 45px 50px 80px;
    margin: 10px 9px 60px 0;
    border-radius: 10px;
}

.testimonial-item .inner-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--dark)), to(var(--primary)));
    background: linear-gradient(var(--dark), var(--primary));
}

.inner-box .text {
    color: var(--text-color);
    font-size: var(--body-font-size);
    font-family: var(--text-font);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    letter-spacing: -0.1px;
}

.testimonial-item .inner-box .auther-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: absolute;
    left: 51px;
    bottom: -50px;
}

.testimonial-item .inner-box .auther-info .image {
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 10px;
    width: 96px;
    height: 96px;
    margin-bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

figure {
    margin: 0 0 1rem;
}

.testimonial-item .inner-box .auther-info .image img {
    width: 80px;
    height: 80px;
}

.testimonial-item .inner-box .auther-info .content-box {
    position: relative;
    top: -15px;
}

.testimonial-item .inner-box .auther-info .content-box .name {
    margin-bottom: 0;
    text-transform: uppercase;
}

.testimonial-item .inner-box .imagev2 {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.testimonial-item .inner-box:after {
    content: "";
    position: absolute;
    bottom: -55px;
    right: 70px;
    width: 60px;
    height: 50px;
    background-image: url(../img/arrow-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(130deg);
}

/*** sacred-puja-carousel ***/

.sacred-puja-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}

.sacred-puja-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}

.feature-block-four {
    position: relative;
    margin-bottom: 30px;
}

.feature-block-four .inner-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: var(--light);
    border-radius: 7px;
}

.feature-block-four .inner-box .image-puja {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.feature-block-four .inner-box .image-puja .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 7px 0 0 7px;
}

.feature-block-four .inner-box .image-puja .image img {
    width: 100%;
    /* height: 100%; */
    max-width: 225px;
    height: 225px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-four .inner-box .content-box {
    position: relative;
    padding: 30px 40px;
    border-bottom: 16px solid var(--primary);
    background-color: var(--light);
    width: 100%;
    border-radius: 0 7px 7px 0;
}

.feature-block-four .inner-box .content-box .title {
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 5px;
}

.img-badge {
    background-color: var(--primary);
    color: #000;
    padding: 2px 10px;
    border-radius: 5px;
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 12px;
}

.f-03 {
    font-size: 15px;
    color: #000;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.f-02 {
    font-size: 14px;
    color: var(--primary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.f-01 {
    font-size: 12px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

@media (min-width: 768px) {

    .sacred-puja-carousel::before,
    .sacred-puja-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .sacred-puja-carousel::before,
    .sacred-puja-carousel::after {
        width: 300px;
    }
}

.sacred-puja-carousel .owl-item .testimonial-text,
.sacred-puja-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.sacred-puja-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.sacred-puja-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.sacred-puja-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.sacred-puja-carousel .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

/* related-product-carousel */
.sacred-puja-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}

.sacred-puja-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}

.related-product-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.related-product-carousel .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #eee;
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link .bi-chevron-right {
    margin-right: 10px;
    display: inline-block;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(125, 125, 125, 0.5);
}

.footer .copyright a {
    color: var(--light);
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #efede752;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.icon-container img {
    width: 35px;
}

.certification p {
    font-size: 14px;
    color: #666;
}


.bg-footer {
    background: var(--dark);
}


.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.line-camp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.bg-color-1 {
    background: #f5f5f5 none repeat scroll 0 0;
    display: block;
}

.add-image {
    background-image: url(../img/ab-2.avif);
}

.divider {
    display: block;
    text-align: center;
}


.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--primary);
    border-radius: 7px;
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown {
    0% {
        top: -20px;
    }

    50% {
        top: -40px;
    }

    100% {
        top: -20px;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .about-one .right {
        padding: 40px 30px;
    }
}

.about-one .right {
    padding: 40px 60px;
}

.about-one .right .border-b {
    border-bottom: 2px solid #e5e5e5;
}

@media (max-width: 767px) {
    .about-one .right .border-b {
        border-bottom: 0;
    }
}

.about-one .right .border-r {
    border-right: 2px solid #e5e5e5;
}

@media (max-width: 767px) {
    .about-one .right .border-r {
        border-right: none;
    }
}

.about-service {
    height: 220px;
}

@media (max-width: 768px) {
    .cat-type {
        font-size: 16px;
        font-weight: 500;
    }
}

@media (max-width: 767px) {
    .about-service {
        height: auto;
    }
}

.category-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}


.category-btn {
    white-space: nowrap;
}

.category-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.category-scroll-wrapper {
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

.pt-25 {
    padding-top: 25px;
}

.icon>img {
    float: left;
    margin-right: 12px;
    border-radius: 50%;
}

.about-service .icon {
    overflow: hidden;
}

.mb-15 {
    margin-bottom: 15px;
}

.about-service h3 {
    color: #5b5b5b;
    overflow: hidden;
    font-size: 18px;
}

.pt-10 {
    padding-top: 10px;
}

.capitalize {
    text-transform: capitalize;
}

.about-service p {
    font-family: 'Poppins';
    color: #979797;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .about-one .right .pl-45 {
        padding-left: 30px;
    }
}

.pl-45 {
    padding-left: 45px;
}

@media (max-width: 767px) {
    .about-one .right .pl-45 {
        padding-left: 0;
    }
}

.w-10 {
    width: 10% !important
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
    color: #000;
}

.step-check-2 {
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 10px;
}

.faq .accordion .accordion-item {
    margin-bottom: 20px;
    border-radius: 18px;
    border: 1px solid #eeee;
    box-shadow: 3px 4px 29.6px 0px #0000000F;
    /* border-right: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    border-left: 4px solid;
    border-image: linear-gradient(to top, #f3c459, #000) 1; */
}

.faq .accordion .accordion-item .accordion-header {
    border-radius: 18px;
}

.bg-download {
    position: relative;
    background: #f3c459;
    background-image: linear-gradient(rgba(255, 176, 7, 0.5), rgb(243, 196, 90, 0.5)), url('../img/body-bg1.png');
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}

.app-img {
    position: relative;
}

img.app-one {
    position: absolute;
    right: 0;
    animation-delay: 2s;
    width: 48%;
    animation: second-app 1.5s linear infinite alternate;
    -webkit-animation: second-app 1.5s linear infinite alternate;
}

.app-img img.app-tow {
    margin-top: 50px;
}

img.app-tow {
    position: absolute;
    left: 0;
    animation-delay: 2s;
    width: 48%;
    animation: first-app 1.5s linear infinite alternate;
    -webkit-animation: first-app 1.5s linear infinite alternate;
}

@keyframes first-app {
    0% {
        transform: translateY(-20%);
    }

    100% {
        transform: translateY(-15%);
    }
}

@keyframes second-app {
    0% {
        transform: translateY(-13px);
    }

    100% {
        transform: translateY(-30px);
    }
}

.search-container {
    background: #fff;
    border-radius: 4px;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.search-input-blog {
    position: relative;
}

.search-input-blog input {
    background: #faf9f7;
    height: 50px;
    border-radius: 4px;
    padding-right: 70px;
    padding-left: 25px;
    border: 1px solid transparent;
}

.search-input-blog button {
    position: absolute;
    max-width: max-content;
    height: 50px;
    width: 50px;
    border-radius: 0px 4px 4px 0px;
    background: var(--primary);
    display: inline-block;
    padding: 0 19px;
    right: 0;
    top: 0;
    border: 0;
}

.search-input-blog button i {
    color: #fff;
    font-size: 16px;
    line-height: 16px;
}

.tabs .nav {
    background: #f0f0ef;
    padding: 5px;
    border-radius: 5px;
}

.tabs .nav .nav-link {
    color: #4f4f4f !important;
    padding: 4px 8px;
}

.tabs .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #fff;
    border-radius: 5px;
}

.card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
}

/*========== Header Section ==========*/

.header-carousel .owl-item img {
    height: 80vh;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    font-size: 32px;
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
    color: white;
    padding: 7px;
    text-align: center;
    width: 60px;
    height: 60px;
    transition: all 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.header-carousel .owl-nav .owl-next {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 0;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    right: 0;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel h4 {
    margin-bottom: 25px;
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    animation: fadeInDown 1s both;
}


.header-carousel p {
    animation: fadeInDown 1s both 0.2s;
    color: #eeee;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*========== Header Section End ==========*/
/*========== Category Section ==========*/
.category-card {
    position: relative;
    border: 1px solid #ddd;
    padding: 16px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 24px;
    background: var(--light);
    box-shadow: 0px 5px 30px 0px #0001110D;
}

.category-card img {
    margin: auto;
    max-width: 60px;
}

.category-card:hover img {
    animation: verticalRotate 0.5s linear 1;
}

@keyframes verticalRotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.category-card .category-content h5 {
    margin: 20px 0;
}

.category-card .category-content h5 a {
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

.category-card:hover h5 a {
    cursor: pointer;
    color: var(--secondary);
}

.carousel .owl-carousel .owl-nav.disabled {
    display: block;
}

.category-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 58px;
    left: -18px;
    background: var(--light);
    color: var(--dark);
    border-radius: 50%;
    transition: 0.5s;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #E7E7E7;
    z-index: 99;
}

.category-carousel .owl-nav .owl-next {
    position: absolute;
    top: 58px;
    right: -18px;
    background: var(--light);
    color: var(--dark);
    border-radius: 50%;
    transition: 0.5s;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #E7E7E7;
    z-index: 99;
}

@media (max-width: 768px) {
    .section-title-side h6 {
        font-size: 18px;
        padding: 0;
        font-weight: 500;
        line-height: 0;
    }
}


/*========== Category Section End ==========*/
/*========== About Section ==========*/

section.about_area {
    position: relative;
    z-index: 1;
}

.about_play {
    position: absolute;
    top: 0%;
    right: 13%;
}

/*animation circle*/
.text-inner {
    animation: circle 15s linear infinite;
    animation: circle 15s linear infinite;
    position: relative;
    z-index: 2;
    fill: transparent;
}

.text-inner img {
    width: 100px;
    max-width: 100%;
    height: auto;
    overflow: visible;
    word-spacing: 10px;
    transform: rotate(0) scaleX(1) scaleY(1);
    position: relative;
}

a.banner-play-btn {
    width: 130px;
    height: 130px;
    border-radius: 71px;
    overflow: hidden;
    line-height: 130px;
    text-align: center;
    position: relative;
    display: inline-block;
    background: beige;
}

.about_play.style_two a.banner-play-btn {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #f8f7f3 !important;
    line-height: 150px;
}

.about_thumb {
    position: relative;
}

.about_play {
    position: absolute;
    top: 0%;
    right: 11%;
}

.about_play.style_two {
    top: -6%;
}

@media (max-width: 768px) {
    .about_play.style_two {
        top: -12%;
    }

    .about_play {
        right: 11%;
    }

    .about_play.style_two a.banner-play-btn {
        width: 100px;
        height: 100px;
        line-height: 100px;
    }

    .text-inner img {
        width: 70px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .about_play.style_two {
        top: -5%;
    }

    .about_play {
        right: 12%;
    }

    .about_play.style_two a.banner-play-btn {
        width: 150px;
        height: 150px;
        line-height: 150px;
    }

    .text-inner img {
        width: 100px;
    }
}

@keyframes circle {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.circle {
    animation: circle 15s linear infinite;
}

.right {
    animation: right 15s linear infinite;
}

.spin2 {
    animation: spin2 15s linear infinite;
}

@keyframes right {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

.about-icon_box {
    display: flex;
    align-items: center;
    padding: 0 0 0 15px;
}

.about_icon {
    margin-right: 35px;
    position: relative;
    top: 10px;
    z-index: 1;
}

.about_icon .bi {
    color: var(--dark);
    font-size: 20px;
}

.about_icon:before {
    position: absolute;
    top: -13px;
    left: -15px;
    height: 50px;
    width: 50px;
    background: #fffdf0;
    content: "";
    z-index: -1;
    border-radius: 5px;
}

.about_content {
    position: relative;
    z-index: 1;
}

.about_button.style_upper {
    border-top: 1px solid #e6eaea;
    padding-top: 35px;
    margin-top: 36px;
}

.about_content h3 {
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 3px;
    display: inline-block;
}

.about_content h1 {
    font-size: 28px;
    line-height: 38px;
    color: #063232;
    font-weight: 500;
    margin-bottom: 20px;
}

.about_area.style_two .section_title h2 {
    font-weight: 600;
    font-size: 32px;
}

.about_area.style_two .section_title h6 {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

.about_area.style_two .section_title p {
    width: 90%;
    margin: 10px 0 24px;
    font-size: 15px;
    line-height: 26px;
    color: #6b7a7a;
    font-weight: 400;
    transition: 0.5s;
}

/* ====== About List====== */

.about_list ul li {
    font-size: 18px;
    line-height: 38px;
    color: #063232;
    font-weight: 500;
}

.about_list ul li i {
    font-size: 22px;
    top: 3px;
    position: relative;
    margin-right: 15px;
}

/* about shape */
.about_shape {
    position: absolute;
    bottom: -9%;
    right: -8%;
}

/*========== About Section End ==========*/

/*========== Service Section ==========*/

.service-area {
    position: relative;
}

.service-box {
    background: #fffef9;
    box-shadow: 3px 4px 29.6px 0px #0000000F;
    padding: 30px 25px 30px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.service-box::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    background: var(--primary);
    right: 0;
    top: 0;
    border-radius: 30px;
    z-index: -1;
    transition: ease all 0.5s;
}

.service-box:hover::before {
    width: 100%;
    left: 0;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .service-icon {
    height: 70px;
    width: 70px;
    background: #fffbda;
    text-align: center;
    line-height: 70px;
    border-radius: 100%;
    transition: ease all 0.3s;
} */

.service-icon img {
    width: 50px !important;
    margin: auto;
    padding: 10px;
}

.service-box:hover .service-icon {
    background: #ffffff;
}

.service-number h4 {
    font-size: 50px;
    color: #CCCCCC;
    font-weight: 700;
    opacity: 0.3;
    transition: ease all 0.3s;
}

.service-box:hover .service-number h4,
.service-box:hover .service-content h2 a {
    color: #fff;
    opacity: inherit;
}

.service-box:hover .service-content p {
    color: #fff;
}

.service-content h2 {
    margin: 0 0 8px;
}

.service-content h2 a {
    font-size: 19px;
    color: #0F1B24;
    font-weight: 700;
    line-height: 33px;
    display: inline-block;
    text-decoration: none;
}

.service-content p {
    font-size: 16px;
    font-weight: 400;
    color: #787878;
    line-height: 24px;
}

.services-section {
    position: relative;
    overflow: hidden;
    background: #fffbf4;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover h4 {
    color: var(--secondary);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.service-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #495057;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {

    .service-card h4 {
        font-size: 1.2rem;
    }
}

.bg-pattern {
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

/*========== Service Section End==========*/
/*========== Event Section ==========*/
/* Product Card */
.event-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    margin: 0.2rem;
    border: 1px solid #eee;
}

.event-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
}

/* Product Image */
.event-img {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.4s ease;
}

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

.event-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-img::after {
    opacity: 1;
}

/* Product Details */
.event-details {
    padding-top: 1rem;
    background: #fff;
    position: relative;
}

.event-details h3.title a {
    text-align: center;
    font-size: 21px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    text-decoration: none;
}

.event-card:hover .event-details h3.title a {
    color: #dd2a12;
}

/* Pricing */
.event-details p.mb-0 {
    margin-bottom: 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.new-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    font-family: 'Arial', sans-serif;
}

.last-price {
    font-size: 1.1rem;
    font-weight: 400;
    color: #acacac !important;
    position: relative;
    text-decoration: line-through;
}

.offer-badge2 {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white !important;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title h6 {
        font-size: 1.8rem;
    }

    .text-center p.mb-5 {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .event-card {
        margin: 0.5rem;
    }

    .event-details {
        padding: 1rem;
    }

    .event-details h3.title a {
        font-size: 1.1rem;
    }

    .new-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .section-title h6 {
        font-size: 1.5rem;
    }

    .event-details p.mb-0 {
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-badge {
        align-self: flex-start;
    }
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: linear-gradient(135deg, #d4af37, #f4d03f) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
    border: none !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3) !important;
    transition: all 0.3s ease !important;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: linear-gradient(135deg, #f4d03f, #d4af37) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
}

.owl-carousel .owl-dots .owl-dot span {
    background: #d4af37 !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: #2c3e50 !important;
    transform: scale(1.3) !important;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.event-card {
    animation: fadeInUp 0.6s ease forwards;
}

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

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

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

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

/*========== Event Section End ==========*/
.video-card {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.video-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    position: absolute;
    inset: 0;
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
}

.video-time {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2c2c2c;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    z-index: 3;
}

.video-btn {
    background-color: #c8102e;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
    margin-top: 20px;
}

.view-all-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    flex-direction: column;
    color: white;
    position: relative;
    border-radius: 20px;
    min-height: 420px;
}

.view-all-icon {
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 10px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 10px 20px;
}

.border-white {
    background: #fff !important;
}

/*========== Video Section End ==========*/
/*==========  Puja Section==========*/

.puja-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    /* transition: transform 0.2s; */
    transition: 0.5s;
    margin: 10px 0;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

/*
.puja-card:hover {
    transform: translateY(-5px);
} */

.puja-card:hover .puja-title {
    color: var(--secondary);
}

/* .puja-card .puja-thumbnail:hover img {
    filter: grayscale(1);
} */

.puja-card .puja-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: 0.5s;
}

.puja-card:hover .puja-thumbnail::before {
    animation: shine 800ms;
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

.puja-card .puja-thumbnail:before {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.puja-thumbnail img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.puja-info {
    padding: 0 10px;
    text-align: left;
}

.puja-title {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0;
    color: #000;
}

.puja-date {
    font-size: 14px;
    color: #888;
    margin-top: 4px;
}

.custom-owl-nav {
    display: flex;
    gap: 10px;
}

.custom-owl-nav .owl-prev,
.custom-owl-nav .owl-next {
    background: var(--bs-white);
    color: var(--secondary);
    padding: 10px 14px;
    border-radius: 50%;
    transition: 0.3s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor: pointer;
}

.custom-owl-nav .owl-prev:hover,
.custom-owl-nav .owl-next:hover {
    background-color: var(--secondary);
    color: var(--bs-white);
}

/*========== Puja Section End==========*/
/*========== Vedic Report Section==========*/
.vedic-report {
    overflow: hidden;
}

.vedic-report .nav-tabs {
    border: 0;
}

.vedic-report .nav-link {
    border: 0;
    padding: 7px;
    transition: 0.3s;
    color: #000;
    border-radius: 0;
    border-right: 2px solid color-mix(in srgb, #6c6c6c, transparent 90%);
    font-weight: 500;
    font-size: 16px;
}

.vedic-report .nav-link:hover {
    color: #000;
}

.vedic-report .nav-link.active {
    color: var(--primary);
    border-color: var(--secondary);
    background-color: var(--light);
}

.vedic-report .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.vedic-report .details h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #dd2a12;
}

.vedic-report .details p {
    color: color-mix(in srgb, #666, transparent 20%);
    font-size: 17px;
}

.vedic-report .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .vedic-report .nav-link {
        border: 0;
        padding: 15px;
    }

    .vedic-report .nav-link.active {
        color: var(--secondary);
    }
}

/*========== Product Section ==========*/
.common-bg {
    background-image: url('../img/texture.png');

}

.carousel .owl-carousel .owl-nav.disabled {
    display: block;
}

.featured-product-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -18px;
    background: var(--light);
    color: var(--dark);
    border-radius: 50%;
    transition: 0.5s;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #E7E7E7;
    z-index: 99;
}

.featured-product-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -18px;
    background: var(--light);
    color: var(--dark);
    border-radius: 50%;
    transition: 0.5s;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #E7E7E7;
    z-index: 99;
}

/*========== Product Section End ==========*/
.cs_iconbox {
    border-radius: 7px;
    display: inline-block;
    width: 100%;
    padding: 20px 15px;
    background: var(--light);
    transition: .5s;
    border: 1px solid var(--primary);
    border-radius: 7px;
    text-align: center;
}

.cs_iconbox:hover {
    margin-top: -10px;
    background: var(--primary);
}

.cs_iconbox .cs_iconbox_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background-color: #efede752;
    border-radius: 50%;
    margin: 0 auto 10px;
    border: 1px solid var(--primary);
}

.cs_iconbox:hover .cs_iconbox_icon {
    background: #fff;
    border: 1px solid var(--light);
}

.cs_iconbox:hover * {
    color: var(--light) !important;
}

.cs_iconbox .cs_iconbox_title {
    position: relative;
    z-index: 1;
}

.cs_bold {
    font-weight: 700;
}

@media (max-width: 1400px) {
    .cs_fs_32 {
        font-size: 14px;
    }
}

.cs_fs_32 {
    font-size: 18px;
    line-height: 1.31em;
}

.cs_iconbox .cs_iconbox_shape {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #885f04;
    opacity: 0.02;
    top: 10%;
    right: 0;
}

.w-100 {
    width: 100% !important;
}

.category ul {
    padding-left: 0;
    margin-bottom: 0;
}

.category ul li {
    list-style: none;
    margin-bottom: 10px;
}

.category ul li:last-child {
    margin-bottom: 0;
}

.category ul li a {
    color: #333333a1;
    font-weight: 500;
}

.category ul li a:hover {
    color: var(--primary);
}

.search-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.search-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2f2a36;
}

.search-subtitle {
    font-size: 1.1rem;
    color: #7a6e92;
    margin-bottom: 30px;
}

.search-box {
    max-width: 600px;
    width: 100%;
    position: relative;
}

.search-input {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 100%;
    padding-right: 50px;
    font-size: 1rem;
}

.search-btn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--primary);
    border: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 10px 16px;
    color: #000;
}

.search-btn i {
    font-size: 1rem;
}

.puja-features {
    background: #f7f7f7;
    padding: 10px;
    border-radius: 10px;
    margin-top: 15px;
}

.puja-features .features-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
    color: #4d4c4c;
}

.puja-features .features-list li .step-check-puja {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffcc00;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 10px;
}

#countdown li {
    display: inline-block;
    font-size: 16px;
    list-style-type: none;
    padding: 0 8px;
}

#countdown li span {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.astro-service {
    position: relative;
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid var(--primary);
    transition: 0.3s;
    height: 100%;
    /* max-width: 380px; */
}

.astro-service:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.zodiac-card {
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../img/zodiac.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    text-align: center;
    padding: 25px 15px;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.zodiac-icon {
    /* background-color: #fff; */
    /* font-size: 28px; */
    width: 65px;
    height: 65px;
    /* line-height: 55px; */
    text-align: center;
    /* border-radius: 50%; */
    display: inline-block;
    margin-bottom: 10px;
}

.zodiac-card h4 {
    font-weight: 700;
    font-size: 24px;
}

.zodiac-card p {
    margin-bottom: 8px;
    color: #666;
}

.read-more {
    color: red;
    font-weight: 500;
    text-decoration: none;
}

.astrologer-item {
    background: #fff;
    height: 100%;
    width: 100%;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline-yellow {
    background: #fff;
    border: 1px solid var(--primary);
    border-radius: 5px;
    color: var(--dark);
}

.btn-outline-yellow:hover {
    background: var(--dark);
    color: #fff;
    border: 1px solid var(--dark);
}

.bg-primary-subtle {
    background: #fff5ec;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.border-kundali {
    border-top: 4px solid var(--primary);
}

.step-icon-kundli {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.step-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.vertical-line {
    width: 2px;
    background-color: #e0e0e0;
    margin: 0 auto;
    height: 40px;
}

.step-title {
    font-weight: bold;
    font-size: 1.3rem;
}

.step-description {
    color: #606c76;
}

input[type="range"]::-webkit-slider-thumb {
    background-color: #f4bb28;
    border: 3px solid #fff;
    height: 20px;
    width: 20px;
    margin-top: -8px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: #f4bb28;
    height: 6px;
    border-radius: 10px;
}

input[type="range"]::-moz-range-thumb {
    background-color: #f4bb28;
    border: 2px solid #fff;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-track {
    background: #f4bb28;
    height: 6px;
    border-radius: 10px;
}

/* Yellow checkbox (optional, depends on full UI) */
.yellow-check:checked {
    background-color: #f4bb28;
    border-color: #f4bb28;
}

.success-icon {
    background: #d4f8d4;
    width: 55px;
    height: 55px;
    border-radius: 100%;
    line-height: 55px;
}

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

.image-box .image img {
    width: 100%;
    height: auto;
    padding: 0 40px 40px 40px;
}

.bounce-y {
    -webkit-animation: bounce-y 8s infinite linear;
    animation: bounce-y 8s infinite linear;
}

@keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.circle-bg {
    position: relative;
    width: 200px;
    /* set as needed */
    height: 200px;
    /* set as needed */
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.circle-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/Astro.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: imgRotate 20s linear infinite;
    z-index: -1;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

.store-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.store-carousel .owl-dot {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.store-carousel .owl-dot span {
    display: block;
    width: 15px;
    height: 15px;
    background: #ccc;
    border-radius: 50%;
    transition: background 0.3s;
}

.store-carousel .owl-dot.active span {
    background: #f6c439;
}

.card-wrapper {
    max-width: 100%;
}

.sticky-image {
    position: sticky;
    top: 0;
    /* z-index: 1000; */
}

.card-wrapper img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

.product-imgs {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 10px;
    border-radius: 5px;
}

.img-display {
    overflow: hidden;
}

.img-showcase {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase img {
    min-width: 100%;
    border-radius: 5px;
}

.img-select {
    display: flex;
}

.img-item {
    margin: 0.3rem;
    border: 1px solid #ddd;
}

.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3) {
    margin-right: 0;
}

.img-item:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

.product-rating span {
    font-weight: 600;
    color: #252525;
}

.product-price {
    /* margin: 1rem 0; */
    font-size: 1rem;
    font-weight: 700;
}

.new-price2 {
    color: var(--secondary);
    font-weight: 600;
    font-size: 18px;
}

.purchase-info {
    margin: 1.5rem 0;
}

.purchase-info input {
    border: 1.5px solid #ddd;
    border-radius: 25px;
    text-align: center;
    padding: 0.45rem 0.8rem;
    outline: 0;
    margin-right: 0.2rem;
    margin-bottom: 1rem;
}

.purchase-info input {
    width: 60px;
}

@media screen and (min-width: 992px) {
    .card-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }

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

    .product-content {
        padding-top: 0;
    }
}

/* Customer Dashboard */

.dashboard {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Sidebar (Menu) */
.menu-wrap {
    width: 260px;
    background: var(--light);
    padding-bottom: 3em;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
}

@media (max-width: 991px) {
    .menu-wrap {
        margin-left: -260px !important;
        transition: margin 0.3s ease;
    }

    .menu-wrap.opensidebar {
        margin-left: 0 !important;
    }

    .mobile-toggle-menu {
        cursor: pointer;
        z-index: 1000;
    }

    .mobile-toggle-menu.toggle,
    .mobile-toggle-menu.close {
        display: block;
    }

}

@media (min-width: 1024px) {

    .mobile-toggle-menu.toggle,
    .mobile-toggle-menu.close {
        visibility: hidden;
    }
}

.menu-wrap .user {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 1em;
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px; */
    /* border-bottom: 1px solid #eee; */
}

.menu-wrap .user .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.menu-wrap .user .user-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-wrap .user figcaption {
    margin: 0;
    padding-left: 1em;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.875em;
    line-height: 100%;
}

.menu-wrap nav {
    padding: 1em 2em;
}

.menu-wrap nav section {
    padding-top: 1em;
}

.menu-wrap nav h3 {
    margin: 0;
    font-size: .875em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}

.menu-wrap nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-wrap nav ul li {
    margin-top: 1em;
}

.menu-wrap nav ul li a {
    display: flex;
    align-items: center;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: .875em;
    transition: color .15s ease;
}

.menu-wrap nav ul li a.active {
    color: var(--primary);
    letter-spacing: 1px;
}

.menu-wrap nav ul li i {
    font-size: 20px;
    font-weight: 600;
}

/* Right Side */
.main-area {
    width: calc(100% - 260px);
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #e4e4e459;
}

@media (max-width: 991px) {
    .main-area {
        margin-left: 0 !important;
    }
}

/* Top Bar */
.search-wrap {
    width: 100%;
    height: 60px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Content Area */
.content-wrap {
    flex: 1;
    overflow: auto;
    padding: 1em;
}

.content-wrap .content {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 0px 0px 1px;
}

.box-content {
    padding-left: 1.25em;
    white-space: nowrap;
}

.person-boxes {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 2em;
}

.person-boxes .person-box {
    background: var(--light);
    text-align: center;
    padding: 2em;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.person-boxes .person-box:nth-child(2n) .box-avatar .no-name {
    background: var(--primary);
}

.person-boxes .person-box:nth-child(5n) .box-avatar .no-name {
    background: var(--primary);
}

.person-boxes .person-box .box-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0px auto;
    overflow: hidden;
}

.person-boxes .person-box .box-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-boxes .person-box .box-avatar .no-name {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    font-size: 1.5em;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    background: var(--primary);
}

.person-boxes .person-box .box-bio {
    white-space: nowrap;
}

.person-boxes .person-box .box-bio .bio-name {
    margin: 2em 0 .75em;
    color: var(--dark);
    font-size: 1em;
    font-weight: 700;
    line-height: 100%;
}

.person-boxes .person-box .box-bio .bio-position {
    margin: 0;
    font-size: .875em;
    line-height: 100%;
}

.person-boxes .person-box .box-actions {
    margin-top: 1.25em;
    padding-top: 1.25em;
    width: 100%;
    border-top: 1px solid var(--dark);
}

.camera-icon {
    width: 30px;
    position: relative;
    margin-top: -35px;
}

.value-btn {
    background: #f3c459;
    color: #fff;
    border: 0;
    padding: 5px 15px;
    border-radius: 5px;
}

.input-value {
    text-align: center;
    border: none;
    margin: 0px;
    width: 50px;
    height: 35px;
    font-size: 14px;
    box-sizing: border-box;
    color: #000;
    background: #fff;
    border: 0.2px solid #f3f3f3;
    border-radius: 5px;
}

/* Ticket */
:root {
    --body-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --msger-bg: #fff;
    --border: 2px solid #ddd;
    --left-msg-bg: #ececec;
    --right-msg-bg: #579ffb;
}

.msger {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    height: 70vh;
    border: var(--border);
    border-radius: 5px;
    background: var(--msger-bg);
    box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2);
}

.msger-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: var(--border);
    background: #eee;
    color: #666;
}

.msger-chat {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.msger-chat::-webkit-scrollbar {
    display: none;
}

.msg {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
}

.msg:last-of-type {
    margin: 0;
}

.msg-img img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
}

.msg-bubble {
    max-width: 450px;
    padding: 15px;
    border-radius: 15px;
    background: var(--left-msg-bg);
}

.msg-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.msg-info-name {
    margin-right: 10px;
    font-weight: bold;
}

.msg-info-time {
    font-size: 0.85em;
}

.left-msg .msg-bubble {
    border-bottom-left-radius: 0;
}

.right-msg {
    flex-direction: row-reverse;
}

.right-msg .msg-bubble {
    background: #f4c237;
    color: #fff;
    border-bottom-right-radius: 0;
}

.right-msg .msg-img {
    margin: 0 0 0 10px;
}

.msger-inputarea {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: var(--border);
    background: #eee;
}

.msger-inputarea * {
    padding: 4px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
}

.msger-input {
    flex: 1;
    background: #ddd;
}

.msger-send-btn {
    margin-left: 10px;
    background: rgb(0, 196, 65);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.23s;
}

.msger-send-btn:hover {
    background: rgb(0, 180, 50);
}

.msger-chat {
    background-color: #fff;
    background-image: linear-gradient(rgb(248 240 240 / 40%),
            rgb(248 247 240 / 40%)),
        url("../img/astro.png");
    background-position: center center;
    background-size: cover;
}

.img-set {
    width: 80px;
    height: 80px;
    border: 2px solid #dd153c;
    border-radius: 100%;
}

.head-info {
    padding: 0;
    text-align: center;
    margin: 0;
    background: #ff9c41;
    color: #fff;
}

.head-info p {
    margin: 0;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
}

.menu-wrap .user .sidebar-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    position: relative;
    border-radius: 3px;
    background: rgb(0, 0, 0);
    transition: 0.3s;
}

.card .card-body .input-group .input-group-text i {
    color: #f5be24e6;
}

.custom-btn {
    width: 100%;
    padding: 15px;
    background: #f4f7f7;
    border: 1px solid #ddd;
}

body.swal2-toast-shown .swal2-container.swal2-center {
    top: 75% !important;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
}

.swal2-popup.swal2-toast .swal2-title {
    font-size: 14px !important;
}

.swal2-popup.swal2-toast {
    padding: 10px !important;
}

.swal2-popup.swal2-toast .swal2-title {
    margin: 8px !important;
}

.fs-12 {
    font-size: 12px !important;
}

/* become astrologer */
* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

#msform p {
    color: grey;
}

#heading {
    text-transform: uppercase;
    color: #f3c459;
    font-weight: normal;
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

#msform fieldset {
    /* background: white; */
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}

.form-card {
    text-align: left;
}

#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform .input-form,
#msform textarea {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2c3e50;
    background-color: #eceff1;
    font-size: 16px;
    letter-spacing: 1px;
}

#msform select {
    padding: 10px 15px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2c3e50;
    background-color: #eceff1;
    font-size: 16px;
    letter-spacing: 1px;
}

#msform .input-form:focus,
#msform textarea:focus,
#msform select:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #f3c459;
    outline-width: 0;
}

#msform .action-button {
    width: 150px;
    background: #f3c459;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right;
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #f3c459;
}

#msform .action-button-previous {
    width: 150px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000;
}

.card {
    border: none;
    position: relative;
}

.fs-title {
    font-size: 25px;
    color: #f3c459;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
}

.purple-text {
    color: #f3c459;
    font-weight: normal;
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.fieldlabels {
    color: #000;
    text-align: left;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

#progressbar .active {
    color: #f3c459;
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400;
}

#progressbar #account:before {
    font-family: "bootstrap-icons";
    content: "\F4DA";
}

#progressbar #personal:before {
    font-family: "bootstrap-icons";
    content: " \F227";
}

#progressbar #payment:before {
    font-family: "bootstrap-icons";
    content: "\F8C8";
}

#progressbar #confirm:before {
    font-family: "bootstrap-icons";
    content: "\F3C2";
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

#progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #f3c459;
}

.progress {
    height: 20px;
}

.progress-bar {
    background-color: #f3c459;
}

.fit-image {
    width: 100%;
    object-fit: cover;
}

.check-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 50vh;
    overflow-y: auto;
}

.form-card .check-card label {
    font-size: 12px;
}

.form-card .form-group {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .check-card {
        height: auto;
    }

    #msform ul {
        padding-left: 0 !important;
    }
}

.astro-view {
    font-size: 12px;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
}

.astro-img {
    border-radius: 100%;
    height: 70px;
    width: 70px;
    object-fit: cover;
    margin-bottom: 10px;
    background: #eee;
}

.verify {
    width: 15px;
    height: 15px;
}

.rating i {
    font-size: 12px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.detail-pic {
    height: 250px;
    width: 250px;
    object-fit: cover;
    border-radius: 100%;
    border: 2px solid var(--secondary);
    background: #f8f8f0;
}

.countdown-section {
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 50px;
    padding-bottom: 50px;
}

.countdown-section:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1;
    background: var(--secondary);
    width: 88%;
}

.countdown-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: -1;
    background: #ffffff;
    width: 0;
}

.map-box1 {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
}

.single-countdown {
    padding-left: 20px;
    border-left: 5px solid var(--light);
    color: #fff;
}

.single-countdown .title {
    color: var(--light);
    font-size: 35px;
    font-weight: 700;
}

.single-countdown .counter {
    color: var(--light);
    font-size: 35px;
    font-weight: 700;
}

.single-countdown h4 {
    font-family: 'Lora', serif;
    font-style: italic;
    margin-top: 10px;
    color: #fff;
}

/* Vedic Kundali banner */
.banner_vedic_kundali {
    background: #F9F8FF;
    height: 500px;
    display: flex;
    overflow: hidden;
    position: relative;
    /* max-width: 1920px; */
    margin: auto;
    z-index: 1;
}

.banner_vedic_kundali .banner-content-one {
    padding: 100px 0;
}

.banner_vedic_kundali .banner-content-one .title {
    color: #000;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    position: relative;
}

.banner_vedic_kundali .banner-content-one .title span {
    color: var(--primary);
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
}

.banner_vedic_kundali .banner-img {
    display: flex;
    align-items: flex-end;
    height: 85%;
}

.ban-center {
    position: relative;
    z-index: 2;
}

.ban-center::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../img/shape3.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30% auto;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
}

.step-circle {
    background: var(--primary);
    width: 80px;
    height: 80px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-circle span {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.work-card {
    background-color: rgb(248, 246, 241);
    border-radius: 8px;
    padding: 20px 18px;
    transition: background-color 0.5s ease, transform 0.5s ease;
}

.arrow {
    position: absolute;
    top: 40%;
    right: -25px;
    color: var(--primary);
}

.arrow .bi-arrow-right {
    font-size: 30px;
    font-weight: 700;
}

.remedies-section {
    background: linear-gradient(to bottom, #f3c459, #fee283);
    border-radius: 16px;
    padding: 30px;
    color: white;
}

.remedies-section h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.remedies-section p.description {
    margin-bottom: 30px;
    font-size: 16px;
}

.remedies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.remedy-card {
    background-color: #fff8e8;
    color: #000;
    border-radius: 16px;
    padding: 20px;
    flex: 1;
    min-width: 260px;
    position: relative;
}

.remedy-card h4 {
    margin: 0 0 10px;
    font-weight: bold;
    font-size: 18px;
}

.remedy-card p {
    margin: 0;
    font-size: 15px;
}

.remedy-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    right: 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.remedy-icon img {
    width: 24px;
    height: 24px;
}

/* Lal Kitab banner */

.banner-shape-red {
    background: #fff8f8;
    height: 550px;
    display: flex;
    overflow: hidden;
    position: relative;
    /* max-width: 1920px; */
    margin: auto;
    z-index: 1;
}

.banner-shape-red .banner-content-one {
    padding: 100px 0;
}

.banner-shape-red .banner-content-one .title {
    color: #000;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    position: relative;
}

.banner-shape-red .banner-content-one .title span {
    color: #cf1102;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
}

.banner-shape-red .banner-img {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.btn-lal {
    background: #cf1102;
    color: #fff;
    border-radius: 5px;
}

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


.circle-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    pointer-events: none;
}

.circle-image img {
    animation: imgRotate 20s linear infinite;
}

@keyframes imgRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.lal_kitab_section {
    background: linear-gradient(to bottom, #cf1102, #413232);
    border-radius: 16px;
    padding: 30px;
    color: white;
}

/* couple match kundali banner */
.banner_couple_match {
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgb(255, 255, 255, 0.4)), url('../img/g-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff5ec;
    height: 500px;
    display: flex;
    overflow: hidden;
    position: relative;
    /* max-width: 1920px; */
    margin: auto;
    z-index: 1;
}

.banner_couple_match .banner-img {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.banner_couple_match .banner-content-one {
    padding: 100px 0;
}

.banner_couple_match .banner-content-one .title {
    color: #000;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    position: relative;
}

.banner_couple_match .banner-content-one .title span {
    color: #fa821d;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
}

.text-match {
    color: #fa821d;
}

.btn-match {
    background: #fa821d;
    color: #fff;
    border-radius: 5px;
}

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

.matching-section {
    background: linear-gradient(to bottom, #fa821d, #ffc123);
    border-radius: 16px;
    padding: 30px;
    color: white;
}

/* Sade Sati banner */
.banner_sade_sati {
    background: #373B44;
    background: -webkit-linear-gradient(to left, #4267a3, #191c23);
    background: linear-gradient(to left, #4267a3, #191c23);
    height: 450px;
    display: flex;
    overflow: hidden;
    position: relative;
    margin: auto;
    z-index: 1;
}

.banner_sade_sati .banner-img {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.banner_sade_sati .banner-content-one {
    padding: 80px 0;
}

.banner_sade_sati .banner-content-one .title {
    color: #fff;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    position: relative;
}

.banner_sade_sati .banner-content-one .title span {
    color: #FFE270;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
}

.banner_sade_sati .banner-img {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.sade-sati-carousel .sade_sati_card {
    background: linear-gradient(135deg, #2f2f2f, #2a3a4b);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.3s ease;
}

.sade_sati_card:hover {
    transform: translateY(-5px);
}

.sade_sati_card .icons {
    background: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sade_sati_card h3 {
    color: #fff;
    margin: 0.5rem 0;
    font-size: 1.25rem;
}

.sade_sati_card p {
    font-size: 1rem;
    line-height: 1.5;
}

.sade-sati-text {
    color: #FFE270;
    line-height: 45px;
    font-weight: 600;
    font-size: 34px;
}

/* Rudraksha banner */
.banner_rudraksha {
    background-image: url('../img/rudraksha-1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
    display: flex;
    overflow: hidden;
    position: relative;
    /* max-width: 1920px; */
    margin: auto;
    z-index: 1;
}

.banner_rudraksha .banner-content-one {
    padding: 60px 0;
}

.banner_rudraksha .banner-content-one .title {
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    position: relative;
}

.banner_rudraksha .banner-content-one .title span {
    color: #83523d;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
}

.btn-rudra {
    background: #83523d;
    color: #fff;
    border-radius: 5px;
}

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

.rudraksha-table {
    width: 100%;
    margin: auto;
    border-collapse: collapse;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.rudraksha-table thead {
    background-color: #fff;
    color: #83523d;
}

.rudraksha-table th,
.rudraksha-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.rudraksha-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.rudraksha-table tbody tr:hover {
    background-color: #f1f1f1;
}

.rudraksha-text {
    color: #83523d;
}

@media screen and (max-width: 768px) {

    .rudraksha-table th,
    .rudraksha-table td {
        font-size: 14px;
        padding: 10px;
    }

    .sm-view img {
        width: 18% !important;
        margin-bottom: 10px;
    }
}

.modal .modal-content .nav-tabs {
    background: #f7f7f7;
    border-radius: 6px;
    padding: 6px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.modal .modal-content .nav-tabs .nav-item {
    flex: 1 1 auto;
    text-align: center;
}

.modal .modal-content .nav-tabs .nav-link {
    border: 0;
    padding: 4px 16px;
    width: 100%;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .modal .modal-content .nav-tabs .nav-link {
        padding: 4px 60px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .nav-tabs .nav-item .nav-link {
        padding: 10px;
    }

    .nav-tabs {
        gap: 0.8rem;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .nav-tabs .nav-item {
        flex: 0 0 auto;
    }

    .nav-tabs::-webkit-scrollbar {
        display: none;
    }

    .breadcrumb-custom .breadcrumb-item {
        text-wrap: nowrap;
        font-size: 12px;
    }

    .breadcrumb {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        margin-bottom: 1rem;
        list-style: none;
    }

    /* Optional: hide scroll bar on WebKit browsers */
    .breadcrumb::-webkit-scrollbar {
        display: none;
    }
}

/* Kalsarp banner */
.banner_kalsarp {
    background-image: linear-gradient(rgba(30, 30, 30, 0.4), rgb(30, 30, 30, 0.4)), url('../img/count.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
    display: flex;
    overflow: hidden;
    position: relative;
    margin: auto;
    z-index: 1;
}

.banner_kalsarp .banner-content-one {
    padding: 80px 0;
}

.banner_kalsarp .banner-content-one .title {
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    position: relative;
}

.banner_kalsarp .banner-content-one .title span {
    color: #768ce0;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
}

.banner_kalsarp .banner-img {
    display: flex;
    align-items: flex-end;
    height: 85%;
}

.btn-rudra {
    background: #768ce0;
    color: #fff;
    border-radius: 5px;
}

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

.text-blue {
    color: #768ce0;
}

@keyframes snake-move {
    0% {
        transform: translateX(0) scaleX(1);
    }

    40% {
        transform: translateX(20px) scaleX(1.05);
    }

    60% {
        transform: translateX(40px) scaleX(0.98);
    }

    80% {
        transform: translateX(60px) scaleX(1.02);
    }

    100% {
        transform: translateX(80px) scaleX(1);
    }
}

.snake-animate {
    animation: snake-move 2s linear infinite alternate;
    will-change: transform;
    display: block;
}

/* Mangalik banner */
.banner_pitra_dosha {
    background-color: #E0DBCF;
    height: auto;
    display: flex;
    overflow: hidden;
    position: relative;
    margin: auto;
    z-index: 1;
}

.banner_pitra_dosha .banner-content-one .title {
    color: #181d38;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    position: relative;
}

.banner_pitra_dosha .banner-content-one .title span {
    color: #091a76;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
}

.banner_pitra_dosha .banner-img {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.btn-dosha {
    background: #091a76;
    color: #fff;
    border-radius: 5px;
}

.banner_gemstone {
    background-image: url('../img/g-03.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 420px;
    display: flex;
    overflow: hidden;
    position: relative;
    margin: auto;
    z-index: 1;
}

.banner_gemstone .banner-content-one {
    padding: 60px 0;
}

.banner_gemstone .banner-content-one .title {
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    position: relative;
}

.banner_gemstone .banner-content-one .title span {
    color: #02b980;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
}

.btn-gem {
    background: #02b980;
    color: #fff;
    border-radius: 5px;
}

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

.banner_numerology {
    background-image: linear-gradient(rgba(40, 40, 40, 0.6), rgba(40, 40, 40, 0.6)), url('../img/numbers.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 450px;
    display: flex;
    overflow: hidden;
    position: relative;
    margin: auto;
    z-index: 1;
}

.banner_numerology .banner-content-one {
    padding: 60px 0;
}

.banner_numerology .banner-content-one .title {
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    position: relative;
}

.banner_numerology .banner-content-one .title span {
    color: #f86db4;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
}

.btn-number {
    background: #f86db4;
    color: #fff;
    border-radius: 5px;
}

.btn-number:hover {
    background: #000;
    color: #fff;
    border-radius: 5px;
}

.box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: #ffeaf180;
    padding: 20px;
    border-radius: 7px;
}

.box-grid .box {
    background: #f6f6f6;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.box-grid .box:hover {
    transform: translateY(-5px);
}

.number {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: #f86db4;
    margin-bottom: 10px;
}

.box-grid .label {
    font-weight: bold;
    color: #f86db4;
    font-size: 16px;
    text-transform: uppercase;
}

.manglik_dosha .banner-content-one {
    padding: 45px 20px;
    background-image: linear-gradient(rgba(255, 245, 225, 0.8), rgb(255, 245, 225, 0.8)), url('../img/body-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height:100%;
}

.manglik_dosha .banner-content-one .title {
    color: #000;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    position: relative;
}

.manglik_dosha .banner-content-one .title span {
    color: #d38814;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
}

.btn-manglik {
    background: #d38814;
    color: #fff;
    border-radius: 5px;
}

.btn-manglik:hover {
    background: #000;
    color: #fff;
    border-radius: 5px;
}

.manglik-list {
    padding: 0;
}

.manglik-list li {
    list-style: none;
    background: #fdfcf2;
    padding: 4px;
    border-radius: 5px;
    color: #000;
    margin-bottom: 5px;
    font-size: 14px;
}

.manglik-list li i {
    color: #d38814;
}

@media screen and (max-width: 767px) {

    .banner_vedic_kundali,
    .banner_couple_match,
    .banner-shape-red,
    .banner_kalsarp,
    .banner_sade_sati,
    .banner_gemstone,
    .banner_rudraksha,
    .banner_numerology {
        height: auto;
    }

    .banner_vedic_kundali .banner-content-one,
    .banner_couple_match .banner-content-one,
    .banner-shape-red .banner-content-one,
    .banner_kalsarp .banner-content-one,
    .banner_sade_sati .banner-content-one,
    .banner_gemstone .banner-content-one,
    .banner_rudraksha .banner-content-one {
        padding: 50px 0;
    }

    .custom-newsletter-wrapper {
        padding: 20px 0 !important;
    }

    .custom-newsletter-form button {
        padding: 15px !important;
    }
}

.bg_get_report {
    background-image: linear-gradient(rgba(246, 246, 246, 0.4), rgba(244, 244, 244, 0.4)), url('../img/frame.webp');
}

.bg_get_report h5 {
    color: #f3c459;
}

.content-card {
    background: #d8d8d83b;
    padding: 20px 25px;
    border-radius: 7px;
    height: 100%;
}

.content-card p {
    color: #666;
    margin-bottom: 0;
}

.banner_courses {
    background: #fff;
    height: auto;
    display: flex;
    overflow: hidden;
    position: relative;
    max-width: 1920px;
    margin: auto;
    z-index: 1;
}

.course-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.course-carousel .owl-nav .owl-prev,
.course-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    font-size: 22px;
    transition: .5s;
}

.course-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
}

.course-carousel .owl-nav .owl-next {
    position: absolute;
    right: 15px;
}

.course-carousel .owl-nav .owl-prev:hover,
.course-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.courseSlider-carousel .owl-carousel-item img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 400px;
    /* object-fit: cover;
    aspect-ratio: 16/9; */
}

.br-10 {
    border-radius: 10px !important;
}

.features-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.stretch-card {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.flex-1 {
    flex: 1;
}

.font-icon {
    font-size: 28px;
    font-weight: 700;
}

.rating i {
    font-size: 12px;
    font-weight: 500;
    color: #FFA800;
}

.admission-card {
    background: var(--primary);
    color: #fff;
    padding: 20px;
    border-radius: 7px;
    text-align: center;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: all ease-in-out 0.4s;
}

.admission-card:hover {
    transform: translateY(-10px);
    cursor: crosshair;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 16px;
}

.admission-card img {
    margin: auto;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.block-2 {
    padding: 20px;
    border-radius: 7px;
    position: relative;
    text-align: center;
    height: 100%;
}

.block-2 .wrap-icon {
    position: relative;
    width: 70px;
    margin-left: auto;
    margin-right: auto;
    height: 70px;
    display: block;
    border-radius: 50%;
    margin-top: -45px;
    margin-bottom: 30px;
}

.block-2.yellow,
.block-2.yellow .wrap-icon {
    background-color: #fdb62f;
}

.block-2.black,
.block-2.black .wrap-icon {
    background-color: #666;
}

.block-2 .wrap-icon>span {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.block-2 h2 {
    font-size: 18px;
    color: #fff;
}

.block-2 p {
    color: rgba(255, 255, 255, 0.7);
}

.verify {
    position: relative;
    width: 15%;
    height: auto;
    text-align: center;
    border-radius: 15px;
    padding: 5px;
}

.verify i {
    font-size: 14px;
    color: var(--secondary);
}

.text_choose {
    line-height: 29px;
    text-align: justify;
    color: #666;
}

.choose_card {
    background: #fffffa;
    border-radius: 7px;
    border: 1px solid var(--secondary);
    animation: pulse 3s infinite;
    animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
    transform: scale(1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.03);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.choose_card p {
    text-align: center;
    color: #000;
}

.custom-newsletter-wrapper {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.custom-newsletter-form {
    display: flex;
    background-color: #fff;
    border-radius: 50px;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-newsletter-form input[type="email"] {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    outline: none;
    border-radius: 0;
    color: #333;
}

.custom-newsletter-form input::placeholder {
    color: #777;
}

.custom-newsletter-form button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-newsletter-form button:hover {
    background-color: #f8a32e;
}

.mb--40 {
    margin-bottom: -40px;
}

.block-t {
    position: relative;
    padding: 40px 25px;
    border-radius: 10px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}

.block-t .offer-content h4,
.block-t .offer-content p {
    color: #fff;
}

.offer-block {
    background-image: url('../img/offer-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.offer-block-2 {
    background-image: linear-gradient(rgba(82, 82, 82, 0.4), rgba(82, 82, 82, 0.4)), url('../img/offer-1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.offer-block-3 {
    background-image: linear-gradient(rgba(81, 81, 81, 0.4), rgba(82, 82, 82, 0.4)), url('../img/offer-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.owl-carousel .owl-stage {
    transition-timing-function: linear !important;
}

.vh-55 {
    height: 55vh;
}

.vh-70 {
    height: 70vh;
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: var(--primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.feature .feature-item .feature-icon span i {
    font-size: 24px;
}

.user-carousel .user-item .user-box {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    margin-top: 70px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.user-carousel .user-item .user-box .testimonial-image img {
    display: inline;
    width: 100px;
    border-radius: 100%;
    border: 4px solid #e7e6e6;
    margin-top: -12%;
    margin-bottom: 20px;
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.date-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ffc107;
    display: flex;
    align-items: center;
    padding: 0;
}

.date-badge .day {
    background: #000;
    color: #fff;
    padding: 5px;
    font-weight: bold;
    margin-right: 5px;
}

.date-badge .month {
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #222;
}

.excerpt {
    font-size: 14px;
    color: #666;
}

.card-footer {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 10px;
    color: #333;
}

.card-footer a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.comment-icon,
.arrow-icon {
    font-style: normal;
    margin-right: 5px;
}

.about-service-card {
    position: relative;
    padding: 10px;
    height: 100%;
    border: 1px solid #ff9933;
    border-radius: 10px;
}

.about-service-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.about-service-card p {
    font-size: 15px;
    color: #6e6e6e;
    margin-bottom: 10px;
    text-align: justify;
}

.list-choose li {
    list-style: none;
}

.cat_course_card {
    background: beige;
    text-align: center;
    padding: 15px 20px;
    border-radius: 10px;
}

.cat_course_card:hover {
    cursor: pointer;
    background: rgb(253, 253, 246);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.cat_course_card h5 {
    margin-bottom: 0;
    font-size: 16px;
}

.courseCategory-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.courseCategory-carousel .owl-nav .owl-prev,
.courseCategory-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
    border-radius: 50%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.courseCategory-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -18px;
    top: -24px;
}

.courseCategory-carousel .owl-nav .owl-next {
    position: absolute;
    right: -18px;
    top: -24px;
}

.courseCategory-carousel .owl-nav .owl-prev:hover,
.courseCategory-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.course-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #fff;
}

.course-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f1f1f1;
    color: #333;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 600;
    z-index: 1;
}

.course-image {
    /* height: 180px; */
    background: url('https://cdn-icons-png.flaticon.com/512/3523/3523063.png') no-repeat center;
    background-size: contain;
    background-color: #f5f5dc;
}

.beginner-level {
    background: #f3e6f6;
    color: #7b4f9d;
    font-weight: bold;
    font-size: 0.85rem;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 0 0 10px 0;
}

.card-footer {
    background: transparent;
}

.py-10 {
    padding: 10px 0;
}

.btn-wishlist2 {
    background: #fff;
    color: #000;
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 50%;
    border: 0;
}

.btn-wishlist {
    background: #fff;
    color: #000;
    width: 40px;
    height: 40px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    border: 0;
}

.btn-wishlist:hover {
    background: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
}

.fw-600 {
    font-weight: 600 !important;
}

.product-info-content .nav-tabs {
    border-bottom: 1px solid rgba(52, 168, 83, 0.06);
    gap: 2rem;
}

.product-info-content .nav-tabs .nav-item .nav-link {
    font-size: 16px;
    padding: 1rem 2.4rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 0;
    border: 0;
}

.product-info-content .nav-tabs .nav-item .nav-link.active {
    color: #1d1d1d;
    border-bottom: 1px solid var(--primary);
}

.breadcrumb-custom {
    background-color: #fffaf0;
    padding: 0.75rem 1rem;
    border-radius: 0;
}

.breadcrumb-custom .breadcrumb-item {
    color: #666;
    font-weight: 400;
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
    color: #666;
    content: "›";
    padding: 0 0.5rem;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--secondary);
    font-weight: 500;
}

.breadcrumb-custom .breadcrumb-item a {
    color: #333;
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    text-decoration: underline;
}

.thumb-img.active {
    border: 2px solid #ff9933;
}

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #ccc;
    padding: 10px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-bar .product-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-bar .product-info img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* Puja Container */
.puja-banner {
    /* background: rgb(254 245 236); */
    background-image: url('../img/puja/banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    overflow: hidden;
    position: relative;
    max-width: 1920px;
    margin: auto;
    z-index: 1;
    /* border-radius: 0 0 100px 100px; */
}

.puja-banner .banner-img {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.puja-banner .banner-puja-content h2 {
    color: #000;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    position: relative;
}

.circle-chakra {
    position: absolute;
    top: 22%;
    left: 40%;
    transform: translate(-43%, -43%);
    z-index: -2;
    pointer-events: none;
}

.circle-chakra img {
    animation: imgRotate 20s linear infinite;
}

@keyframes imgRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.puja-btn {
    background-color: rgb(255 129 0);
    color: #fff;
    border: 1px solid rgb(255 129 0);
    padding: 10px 20px;
    border-radius: 6px;
}

.puja-outline-btn {
    color: rgb(255 129 0);
    border: 1px solid;
    padding: 10px 20px;
    border-radius: 6px;
}

.countdown {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 18px;
    /* background-color: rgb(255 129 0 / 80%); */
    /* color: white; */
    /* font-weight: bold; */
    /* border-bottom-right-radius: 10px; */
    /* font-size: 12px; */
}

.puja-container .owl-carousel .owl-nav.disabled {
    display: block;
}

.today-puja-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    background: var(--bs-white);
    color: var(--secondary);
    padding: 10px 14px;
    border-radius: 50%;
    transition: 0.5s;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.today-puja-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    background: var(--bs-white);
    color: var(--secondary);
    padding: 10px 14px;
    border-radius: 50%;
    transition: 0.5s;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.puja-section {
    background-color: #fff;
    /* padding: 2rem; */
}

.left-banner {
    color: #fff;
    text-align: left;
    border-radius: 1rem;
    position: relative;
}

.left-banner img {
    width: 100%;
    border-radius: 1rem;
    margin-top: 1rem;
}

.countdown-box {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.countdown-box div {
    background-color: #fff1e6;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 60px;
    color: #a63a01;
}

.rating {
    color: var(--secondary);
}

.devotee-imgs img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.services-details__importance {
    position: relative;
    display: block;
    padding: 55px 50px 63px;
    background-color: #f5f3ee;
    z-index: 1;
}

.services-details__importance-shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.services-details__importance-shape-1 img {
    width: auto;
}

.services-details__importance-img {
    position: absolute;
    bottom: 0;
    right: 50px;
    z-index: -1;
}

.services-details__importance-title-box {
    position: relative;
    display: block;
}

.services-details__importance-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 34px;
}

.services-details__importance-btn-box {
    position: relative;
    display: block;
    margin-top: 23px;
}

.services-details__importance-btn {
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    color: #fff;
    background-color: #000;
    padding: 10px 30px 11px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.border-dashed {
    border-bottom: 1px dashed #e6e6e6;
}

.fs-14 {
    font-size: 14px !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.offer-container {
    position: relative;
    display: inline-block;
}

.bg-amount {
    background-color: #ffffea;
    padding: 8px;
    border-radius: 10px;
    margin: 15px 0;
    border: 1px solid #eeee;
    color: #000;
    letter-spacing: 0.5px;
}

.offer-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    color: white;
    padding: 10px 0;
    width: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    text-orientation: upright;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
    border-radius: 3px 3px 0 0;
}

.offer-badge::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid red;
}

.date-circle {
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 1.2;
    font-weight: bold;
    color: #555;
}

.date-circle small {
    font-size: 0.6rem;
    display: block;
    font-weight: normal;
}

.temple-img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.fix-tabs {
    display: flex;
    justify-content: start;
    align-items: center;
    background: #eee;
    padding: 10px;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.tab-circle {
    width: 25px;
    height: 25px;
    background-color: #ff6b35;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-size: 0.8rem;
    display: inline-block;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ff6b35;
}

.btn-next {
    background-color: #ff6b35;
    border: none;
    padding: 10px 30px;
    font-weight: bold;
    color: white;
    border-radius: 10px;
}

.secure-icons {
    font-size: 0.8rem;
    color: #999;
}

.secure-icons i {
    margin-right: 5px;
}

.gotra-hint {
    font-size: 0.85rem;
    color: #777;
    margin-left: 5px;
}

.participate {
    height: 500px;
    overflow-y: auto;
}

.checkout-bg {
    background: #FF9933;
}

.product-nav {
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 68px;
    white-space: nowrap;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    background: #fff !important;
    display: block;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    z-index: 90;
}

.product-nav .nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.product-nav .nav-item .nav-link.active {
    color: #c64d04;
    border-bottom: 2px solid #c64d04;
}

.product-nav .nav-item .nav-link {
    color: #666;
    font-weight: 600;
    padding: 10px 15px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.benefit-card {
    border: 2px solid #ffa65c;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}

.benefit-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-text .icon {
    border-radius: 50%;
    color: #f76b1c;
    background: antiquewhite;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 6px;
    margin: 0;
}

.w-15 {
    width: 15% !important;
}

.benefit-text h3 {
    margin: 0 0 10px;
    font-size: 1.1em;
    color: #000;
}

.benefit-text p {
    margin: 0;
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
}

.card-package {
    border: 2px solid #ffa65c;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.2s;
}

.card-package:hover {
    transform: translateY(-5px);
}

.card-header-custom {
    padding: 1.5rem 1rem 1rem;
    color: #fff;
    font-weight: 600;
}

.card-price {
    font-size: 1.5rem;
    font-weight: bold;
}

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

.package-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 14px;
}

.icon {
    color: #f76b1c;
    font-size: 1.2rem;
}

.btn-disabled {
    background-color: #b0b0b0;
    color: #fff;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    cursor: not-allowed;
}

.card-img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.package-details {
    padding: 50px 0;
}

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

.chadhawa-wrapper {
    position: relative;
    padding: 7px;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid #b3b3b3;
    box-shadow: none !important;
    align-items: center;
}

.chadhawa-item {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.chadhawa-item span {
    border-right: 1px dotted #d5d3d3;
    padding: 6px;
}

.chadhawa-item img {
    width: 80px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
}

.chadhawa-item .chadawa-title-amount {
    width: calc(100% - 80px);
}

.font_black_16 {
    font-size: 16px;
    line-height: 25px;
    color: #080e2b;
}

.chadhawa-item .chadawa-title-amount p {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #080e2b;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dakshina-box {
    display: inline-block;
    padding: 3px 6px;
    border: 1px solid var(--primary);
    background-color: #f9f6f1;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-radius: 2px;
    font-size: 14px;
}

.dakshina-box.active {
    background-color: var(--primary);
    color: white;
}

.top-17 {
    top: 17px !important;
}

/*
.cart-slide-modal .modal-dialog {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    height: 100%;
    width: 400px;
    max-width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    pointer-events: none;
}

.cart-slide-modal.show .modal-dialog {
    transform: translateX(0);
    pointer-events: auto;
}

.cart-slide-modal .modal-content {
    height: 100%;
    border: none;
    border-radius: 0;
    overflow-y: auto;
}

@media (max-width: 576px) {
    .cart-slide-modal .modal-dialog {
        width: 100%;

    }
}

.cart-slide-modal .modal-content {
    height: 100%;
    border: none;
    border-radius: 0;
    overflow-y: auto;
} */


.ayur-tpro-box {
    background-color: var(--light);
    box-shadow: 3px 4px 29.6px 0px #0000000F;
    padding: 5px;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.ayur-tpro-text {
    padding: 11px 10px 8px;
}

.ayur-tpro-text h3,
.ayur-tpro-text h3 a {
    font-size: 18px;
    font-weight: 500;
    color: var(--ayur-banheading-color);
    transition: all .3s linear;
}

.ayur-tpro-text h3 a:hover,
.ayur-blog-text h3 a:hover {
    color: var(--ayur-primary-color);
}

.ayur-tpro-price {
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    padding-bottom: 10px;
}

.ayur-tpro-star {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ayur-tpro-price>p {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.ayur-tpro-price>p del {
    color: #666;
    font-size: 20px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    margin-right: 10px;
}

.ayur-tpro-star>p {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary);
}

.ayur-tpro-img {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.ayur-tpro-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.ayur-tpro-sale p {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    max-width: 100%;
    padding: 2px 10px;
    background-color: var(--primary);
    border-radius: 25px;
    text-align: center;
    border: 1px solid #fae299ee;
}

.ayur-tpro-sale-off p {
    background-color: #21C0F2;
}

.ayur-tpro-sale-trend p {
    background-color: #00BF13;
}

.ayur-tpro-sale-star {
    justify-content: flex-end;
}

.ayur-tpro-viewbtn {
    margin: 10px auto 0;
    text-align: center;
}

.ayur-tpro-box .ayur-tpro-img>img {
    transition: all .3s linear;
}

.ayur-tpro-box:hover .ayur-tpro-img>img {
    transform: scale(1.1);
}

.ayur-tpro-like svg path {
    fill: var(--ayur-para-color);
}

.ayur-tpro-like a img.like {
    position: absolute;
    right: 1px;
    top: 5px;
    opacity: 0;
}

a.likeproduct img.unlike {
    opacity: 0;
}

a.likeproduct img.like {
    opacity: 1;
}

.ayur-trepro-box .ayur-tpro-sale {
    top: 10px;
    left: 10px;
    right: 10px;
}

.ayur-bgshape img {
    position: absolute;
    z-index: -1;
}

.ayur-tpro-bgshape img:nth-child(1) {
    right: 0;
    top: -12px;
}

.ayur-tpro-bgshape img:nth-child(2) {
    left: 0;
    top: 12.6%;
    animation: jumpThree 5s infinite linear;
}

.team-item .hover-img {
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.team-item:hover .hover-img {
    opacity: 1;
    display: block !important;
}

.team-item:hover .main-img {
    opacity: 0;
}

.fadeInUp {
    animation-name: E;
}

@keyframes E {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/*==========Event CSS Start==========*/
.main-event {
    background-color: #f3f4f8;
}

.event-img-box {
    position: relative;
}

.event-video-play-box {
    position: absolute;
    background-color: #f22049;
    padding: 37px 42px;
    border-radius: 8px;
    box-shadow: 0px 30px 60px 0px rgba(255, 82, 25, 0.4);
    bottom: 100px;
    right: 0;
    display: flex;
    align-items: center;
    animation: movedelement 5s linear infinite;
}

.event-play-btn {
    transform: translate(0);
}

.event-play-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    background-size: 200% 100%;
    background-position: left center;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #f22049;
    padding-left: 5px;
    transition: 0.3s;
    z-index: 1;
}

.event-play-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    pointer-events: none;
    animation: waveBtn 2.5s infinite;
    z-index: -1;
}

.event-play-btn a:hover {
    color: #f22049;
}

@keyframes waveBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 225, 225, 1)
    }

    50% {
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

.event-content-box {
    padding-left: 30px;
}

.event-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    border-right: solid 5px #ffffff;
    margin-bottom: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-date-day {
    display: inline-block;
}

.event-date p {
    font-family: 'Jost', sans-serif;
    font-size: 40px;
    line-height: 40px;
    color: #0060ff;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
    margin-bottom: 5px;
}

.event-day p {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #0060ff;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
}

.event-content-text {
    margin-left: 15px;
}

.event-content-text p {
    font-size: 14px;
}

.event-text-line {
    width: 1px;
    height: 60px;
    background-color: #cccccc;
    margin-left: 15px;
}

.event-time-place {
    display: flex;
    align-items: center;
}

.event-time p {
    margin-bottom: 0;
    line-height: 15px;
}

.event-time-place .event-text-line {
    width: 1px;
    height: 11px;
    margin-left: 20px;
    margin-right: 20px;
}

.event-place p {
    margin-bottom: 0;
    line-height: 15px;
}

.event-content-text .h3-title {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 25px;
    margin-top: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-box:hover .event-content-text .h3-title {
    color: var(--primary);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.event-box:hover {
    border-right: solid 5px var(--primary);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

/*==========Event CSS End==========*/
.detail_options .main-nav {
    background-color: #fffaf0;
    padding: 10px 0;
    overflow-x: auto;
    white-space: nowrap;
}

.detail_options .nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
    white-space: nowrap;
    border-bottom: 0;
}

.detail_options .nav-menu li {
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #000;
}

.main-nav .nav-menu .nav-link {
    border: 0 !important;
    color: #000;
}

.main-nav .nav-menu .nav-link.active,
.main-nav .nav-menu .nav-item.show .nav-link,
.main-nav .nav-menu .nav-link:hover,
.main-nav .nav-menu .nav-link:focus {
    border: 0 !important;
    background: transparent;
    color: var(--secondary);
}

.detail_options .nav-menu li .bi {
    font-weight: 700 !important;
    font-size: 12px;
}

.detail_options .nav-menu span {
    font-size: 0.75rem;
}

.detail_options .main-nav::-webkit-scrollbar {
    display: none;
}

.detail_options .main-nav {
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.puja-bg {
    background-image: url('../img/puja-bg.jpg');
}

.stiky-tp {
    position: sticky;
    top: 0;
    z-index: 9;
}

.orders-tab .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    gap: 50px;
}

.orders-tab .nav .nav-link {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.orders-tab .nav .nav-link.active {
    background: var(--secondary);
    color: #fff;
}

.order-summary strong {
    font-weight: 500;
    color: var(--secondary);
    line-height: 40px;
    letter-spacing: 0.2px;
}

@media (max-width: 767px) {
    .cat-card .cat-content h5 {
        font-size: 14px;
    }

    .ayur-tpro-text {
        padding: 5px;
    }

    .new-price2 {
        font-size: 16px;
        font-weight: 500;
    }

    .ht-btn2 {
        padding: 10px;
    }

    .ayur-tpro-price>p {
        font-size: 14px;
    }

    .ayur-tpro-text h3 a {
        font-size: 16px !important;
    }

    .ayur-tpro-sale p {
        visibility: hidden;
    }
}

.gem-details-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
    font-family: 'Segoe UI', sans-serif;
}

.gem-details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.gem-details-table td {
    padding: 12px 15px;
    vertical-align: top;
}

.gem-details-table tr.alt-row {
    background-color: #f4f4f4;
}

.gem-details-table td strong {
    font-weight: 600;
}

.verify-link {
    color: #fc6e51;
    cursor: pointer;
}
 .testimonial-img {
            width: 100px !important;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            margin: 0 auto;
            display: block;
        }

        .star-rating {
            color: #f5c518;
            font-size: 1.2rem;
        }

        .testimonial-card {
            padding: 20px;
            border-radius: 12px;
            background-color: #f9f9f9;
            height: 100%;
        }

        .testimonial-name {
            font-weight: 600;
            margin-top: 10px;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: #333;
            margin-top: 10px;
        }
