@import url('https://fonts.googleapis.com/css2?family=Liter&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --spiritual-primary: #DAA520;
    --spiritual-primary-dark: #B8860B;
    --spiritual-secondary: #7C3AED;
    --spiritual-secondary-dark: #6B46C1;
    --spiritual-accent: #14B8A6;
    --spiritual-bg-light: #FFFBF5;
    --spiritual-bg-cream: #FFF8F0;
    --spiritual-text-dark: #3E2723;
    --spiritual-text-muted: #6B5B4F;
    --brand-red: #7e1515;
    --brand-red-light: #a01d1d;
    --sacred-saffron: #F37420;
    --sacred-saffron-light: #F3AF42;
    --sacred-saffron-lightest: #ffdec8;
    --sacred-gold: #FFD700;
    --sacred-yellow: #EED062;
    --sacred-white: #FFFFFF;
    --sacred-cream: #FFF8F0;
    --sacred-green: #4B9B5A;
    --text-dark: #3E2723;
    --text-muted: #6B5B4F;
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   WIDGETS SLIDER
   ========================================================================== */

.widgets-slider-section {
    padding: 16px 16px 4px;
    overflow-x: hidden;
}

.widgets-slider {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 300%;
    transition: transform 0.5s ease;
}

.widget-slide {
    width: 33.33%;
}

/* ==========================================================================
   ASTROLOGY MOBILE WIDGET STYLES
   ========================================================================== */

.astrology-mobile-card {
    background: #fff0f0;
    border: 1px solid rgba(243, 116, 32, 0.14);
    border-radius: 26px;
    overflow: hidden;
    margin: 0 10px;
}

.astrology-mobile-header {
    padding: 20px 18px 0;
}

.astrology-widget-toggle {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    text-align: left;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.astrology-mobile-top-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.astrology-mobile-title-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.astrology-mobile-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.astrology-mobile-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

.astrology-header-actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
}

.astrology-header-actions img {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(243, 116, 32, 0.11);
    padding: 6px;
    object-fit: contain;
}

.astrology-services-card {
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;
    padding: 18px 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.astrology-services-label {
    display: inline-block;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.astrology-services-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}

.astrology-service-item {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(243, 116, 32, 0.08);
    padding: 4px 8px;
    border-radius: 12px;
}

.astrology-mobile-card.collapsed .astrology-mobile-body,
.astrology-mobile-card.collapsed .astrology-mobile-footer {
    display: none;
}

.astrology-toggle-icon {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(243, 116, 32, 0.08);
    color: var(--sacred-saffron);
    transition: transform 0.25s ease;
    margin: 0 auto;
}

.astrology-mobile-card.expanded .astrology-toggle-icon {
    transform: rotate(180deg);
}

.astrology-mobile-card {
    transition: all 0.3s ease;
}

.astrology-mobile-card.expanded {
    /* box-shadow: 0 28px 40px rgba(0, 0, 0, 0.12); */
}

.astrology-mobile-body {
    padding: 0 18px;
}

.astrology-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.am-grid-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.am-item-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 116, 32, 0.11);
    color: var(--sacred-saffron);
    border-radius: 14px;
}

.am-item-icon i {
    font-size: 16px;
}

.am-item-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.am-item-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.am-item-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.astrology-mobile-footer {
    padding: 0 18px 18px;
}

.view-astrology-btn-mob {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 280px;
    margin: 0 auto;
    padding: 12px 18px;
    background: var(--sacred-saffron);
    color: #fff !important;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
}

.view-astrology-btn-mob:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(243, 116, 32, 0.22);
}

.links-footer {
    text-align: right;
    color: #fff;
    padding-bottom: 45px;
}

.blog-category-url {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 9px;
    text-align: left;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.links-footer-blog {
    text-align: left;
}

.links-footer-blog p {
    color: var(--text-dark) !important;
    font-size: 10px !important;
}

.links-footer-icon {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: end;
}

.links-footer-icon span {
    cursor: pointer;
    width: 35px;
    height: 35px;
    background-color: var(--sacred-saffron) !important;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.links-footer-urls a {
    color: var(--text-dark) !important;
    font-size: 10px;
    text-decoration: underline !important;
}

.links-footer-icon-txt {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.links-footer-icon-txt h3 {
    color: var(--text-dark) !important;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

.links-footer-blog h4 {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.footer-category-group .footer-category-title {
    color: var(--text-dark) !important;
    font-size: 16px;
    margin-top: 15px;
}

.blog-category-collapsible {
    line-height: 1.6;
    max-height: calc(1.6em * 3);
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.blog-category-collapsible.expanded {
    max-height: 5000px;
}

.col-12.mt-2.copiright-text_mobile {
    font-size: 14px;
    text-align: center;
    color: var(--text-dark);
}

.see-more-toggle {
    background: none;
    border: none;
    color: var(--text-dark) !important;
    font-size: 13px;
    cursor: pointer;
    margin-top: 6px;
    padding: 0;
    text-decoration: underline;
}

.footer-ll {
    color: var(--text-dark) !important;
    font-size: 16px;
}

.footer-links-consolidated {
    background-color: var(--sacred-saffron);
    border-radius: 0;
    margin-bottom: 15px;
}

.privacy-policy-mobile .quick_links_footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-policy-mobile .quick_links_footer li {
    margin: 0 !important;
    position: relative;
    padding-right: 10px;
}

.privacy-policy-mobile .quick_links_footer li:after {
    content: "|";
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    right: 0;
    font-size: 10px;
}

.privacy-policy-mobile .quick_links_footer li:last-child:after {
    content: "";
}

.privacy-policy-mobile .quick_links_footer li a {
    color: #fff !important;
    font-size: 10px;
    text-decoration: none !important;
    font-weight: 400;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .links-footer-icon-txt h3 {
        font-size: 15px;
    }

    .links-footer-blog h4 {
        font-size: 12px !important;
    }

    .links-footer-blog p {
        color: var(--sacred-saffron);
        font-size: 9px !important;
    }

    .links-footer-urls a {
        font-size: 9px !important;
    }

    .blog-category-url {
        gap: 6px;
    }

    .footer-category-group .footer-category-title {
        font-size: 14px;
    }

    .links-footer-icon span {
        cursor: pointer;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}


/* Premium Statistics Section - Redesigned Minimalist */
.premium-stats-section {
    padding: 30px 16px;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;

}

.stats-grid-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.stat-item-premium {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 8px 0;
}

/* Elegant Vertical Dividers */
.stat-item-premium:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #eeeeee, transparent);
}

.stat-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(243, 116, 32, 0.08);
    /* Soft saffron tint background */
    border: 1px solid rgba(243, 116, 32, 0.15);
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sacred-saffron) !important;
    /* Force saffron color */
    font-size: 18px;
    transition: all 0.4s ease;
}

.stat-icon-wrapper i {
    color: var(--sacred-saffron) !important;
}

.stat-item-premium:active .stat-icon-wrapper {
    transform: scale(0.9) translateY(-2px);
    background: var(--sacred-saffron);
    color: #fff;
    border-color: var(--sacred-saffron);
}

.stat-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    max-width: 80px;
}

/* Subtle pulse animation for icons */
@keyframes softPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

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

.stat-icon-wrapper i {
    animation: softPulse 3s infinite ease-in-out;
}

/* Mobile Panchang Section */
/* ==========================================================================
   Panchang Section — pnc-* redesign
   ========================================================================== */

.pnc-section {
    margin: 12px 14px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
    background: #fff;
    display: none;
    /* shown by JS */
}

/* Header */
.pnc-header {
    background: linear-gradient(135deg, #b5310a 0%, #e05515 50%, #f7971e 100%);
    padding: 14px 16px 16px;
    text-align: center;
}

.pnc-om {
    display: block;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    margin-bottom: 4px;
}

.pnc-title {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.pnc-date-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 11.5px;
    color: #fff;
    font-weight: 600;
}

/* Tithi bar */
.pnc-tithi-bar {
    background: #fffbf5;
    border-bottom: 1px solid #f0e6d3;
    padding: 12px 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pnc-tithi-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pnc-tithi-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--sacred-saffron, #F37420);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.pnc-tithi-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark, #3E2723);
    line-height: 1.3;
}

.pnc-tithi-time {
    font-size: 11px;
    color: var(--text-muted, #6B5B4F);
    font-weight: 500;
    text-align: right;
    max-width: 48%;
    line-height: 1.5;
}

/* 2×2 info grid */
.pnc-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #f0e6d3;
}

.pnc-info-card {
    background: #fff;
    padding: 13px 14px 11px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pnc-info-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-bottom: 4px;
    flex-shrink: 0;
}

.pnc-sun {
    background: #fff8e1;
    color: #f59e0b;
}

.pnc-moon {
    background: #e8eaf6;
    color: #5c6bc0;
}

.pnc-star {
    background: #fffde7;
    color: #f9a825;
}

.pnc-leaf {
    background: #e8f5e9;
    color: #43a047;
}

.pnc-info-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted, #6B5B4F);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.pnc-info-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark, #3E2723);
    line-height: 1.3;
}

/* Shubh / Ashubh muhurta row */
.pnc-muhurta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 14px;
    background: #fffbf5;
    border-top: 1px solid #f0e6d3;
}

.pnc-muhurta-card {
    border-radius: 10px;
    padding: 10px 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pnc-shubh {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.pnc-ashubh {
    background: #fff5f5;
    border: 1px solid #fecaca;
}

.pnc-muhurta-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.pnc-shubh .pnc-muhurta-label {
    color: #16a34a;
}

.pnc-ashubh .pnc-muhurta-label {
    color: #dc2626;
}

.pnc-muhurta-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark, #3E2723);
    line-height: 1.3;
}

/* Footer CTA */
.pnc-footer {
    padding: 12px 14px 14px;
    background: #fff;
}

.pnc-view-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: linear-gradient(135deg, #e05515, #f7971e);
    color: #fff !important;
    text-decoration: none !important;
    padding: 11px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(224, 85, 21, 0.3);
    transition: opacity 0.15s;
}

.pnc-view-btn:active {
    opacity: 0.88;
}


.stats-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 116, 32, 0.2), transparent);
    margin: 16px 0;
}

body {
    text-rendering: auto;
}

.main_header,
.user_name_profile_header {
    justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.pujas_cards {
    overflow-x: auto;
    white-space: nowrap
}

#mobile-menu ul,
.location-name {
    list-style: none
}

.or-text:after {
    right: 6px
}

#daterangp,
.post-tittle {
    box-sizing: border-box
}

body {
    font-family: "Noto Sans", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden
}

button.enquiry_verify_otp.btn.bg-red.w-100.text-white.text-center {
    background-color: var(--sacred-saffron)
}

button#pills-user-tab,
ul#pills-tab li {
    text-align: center;
    width: 100%
}

a.nav-link.nav-color {
    padding: .5rem 1rem;
    font-weight: 500
}

.dropdown-menu li {
    font-size: 14px !important;
    color: #6c6c6c
}

.dropdown-menu li a:hover {
    background-color: var(--sacred-saffron-light);
    color: #fff !important;
    padding-left: 5px
}

.header_allPujas {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    background-color: #fff
}

section.all-pujass-section.mt-0.mt-lg-2.all-pujass-section_1 {
    top: 77px !important
}

.popular-pujas-card:hover .upload-white,
.recent_posts_carousel .owl-dots,
.recent_posts_carousel .owl-nav,
.upload-black {
    display: none
}

.all-pujass-section {
    position: sticky;
    top: 0;
    z-index: 9;
    width: 100%
}

section.homeSlider {
    margin-top: 120px
}

.user_name_profile_header {
    align-items: center;
    cursor: pointer
}

.checkbox_input_lable,
.clients_company_info,
.compass-marker,
.location-group,
.logo,
.main_header_ul,
.pandit_book_checkbox_input {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center
}

.main_header {
    width: 100%;
    align-items: center;
    background-color: #fff;
    padding: 12px
}

.mobile_menu_heading {
    background: var(--sacred-saffron-lightest) !important;
    padding: 25px
}

#mobile-menu,
.login_icon_text {
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.mobile_menu_heading p {
    font-family: Noto Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left
}

.login_icon_text {
    border-radius: 5px;
    border: 1px dashed #7f7b7a;
    padding: 10px;
    justify-content: space-between;
    font-size: 18px;
    cursor: pointer;
    align-items: center
}

.login_icon {
    border: 1px solid var(--sacred-saffron);
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    height: 30px;
    width: 30px;
    justify-content: center;
    color: var(--sacred-saffron);
    font-size: 18px
}

.mobile_menu_items_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid #d4d3d3;
    text-decoration: none
}

.left_items_content,
.loction_change,
.phoneNumber,
.right_items_content,
.userLoction span,
.userName span,
.user_address_header span,
.user_name,
.user_profile_icon {
    font-family: Noto Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    text-align: left;
    color: #292321
}


#close-modal:hover,
#feedbackCarousel .owl-next:hover,
#feedbackCarousel .owl-prev:hover,
.all-trending-Pujas p a,
.mobile_menu_close,
.pujas_Name,
.scroll-icon span:hover {
    color: #000
}

.headerSearchbar i,
.mobile_menu_close i,
.scroll-icon span {
    font-size: 20px
}

.user_name_profile {
    background: #fff;
    padding: 10px 30px 10px 12px;
    border-radius: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo img {
    height: 40px
}

.logo span {
    font-size: 24px;
    color: #e63946;
    font-weight: 700;
    margin-left: 10px
}

.search input {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 200px
}

.language,
.location {
    font-size: 14px;
    color: #333
}

.menu-icon {
    flex-direction: column;
    cursor: pointer
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0
}

#mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 25%;
    transform: translateX(100%);
    transition: transform 1s;
    z-index: 999999;
    box-shadow: -2px 0 5px rgba(0, 0, 0, .1);
    flex-direction: column;
    min-height: 90dvh !important;
    max-height: 100dvh !important;
}

.mobile_menu_items {
    overflow-y: auto
}

#mobile-menu ul,
.corporate-pujas-text,
.puja_name_detiles,
.videos_reviews_tittle {
    padding: 20px
}

#mobile-menu ul li {
    margin-bottom: 20px
}

#mobile-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px
}

.alternate-form-select:focus,
.book_pujas_select:focus,
.change-form-select:focus,
.enquiry-form-select:focus,
.navbar-toggler:focus {
    box-shadow: none
}

.panditContainer {
    padding-right: 5rem;
    padding-left: 5rem;
    width: auto;
    box-shadow: 4px 4px 4px 0 #00000021
}

.panditContainer-2,
.panditContainer-3 {
    margin-left: 5rem;
    margin-right: 5rem;
    width: auto
}

.nav-icon img {
    max-width: 100%;
    height: auto
}

.choose-card-img img,
span#searchLabel {
    max-width: max-content
}

.check-progress,
.clients_review-videos,
.corporate_puja_banner,
.lable-input,
.or-text,
li#menu-item-6108 {
    position: relative
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    width: max-content
}

.navbar {
    padding: 10px 0;
    box-shadow: 0 4px 4px 0 #00000021;
    background-color: #ffff
}

.navbar-collapse {
    flex-grow: unset
}

.searchbarInput {
    border: 0 !important;
    color: #7f7b7a !important;
    transition: padding .4s !important;
    padding-left: 0 !important;
    padding: 4px 0px !important;
}

.slide-down,
.slide-up {
    transition: opacity .4s, transform .4s
}

.modalsearchbarInput:focus,
.searchbarInput:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.searchbarInput::placeholder {
    transition: transform .4s, opacity .4s;
    transform: translateY(0);
    opacity: 1
}

.searchbarInput:focus::placeholder {
    transform: translateY(-20px);
    opacity: 0
}

.slide-up {
    opacity: 0;
    transform: translateY(-20px)
}

.slide-down {
    opacity: 1;
    transform: translateY(0)
}

.how-it-work-card-body,
.how-it-work-card-body img,
.popular-pujas-card img {
    transition: transform .8s
}

.slide-up::placeholder {
    transform: translateY(-20px);
    opacity: 0
}

.slide-down::placeholder {
    transform: translateY(0);
    opacity: 1
}

.magnifying-glass-xmark {
    position: absolute;
    top: 13px
}

.search_span_input {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-left: 30px;
    align-items: center
}

span#searchLabel {
    width: 100%;
    color: #7f7b7a
}

.headerSearchbar {
    align-items: center;
    border: 1px solid #d4d3d3;
    border-radius: 25px;
    padding: 5px 10px;
    width: 30%;
    position: relative;
    height: max-content;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.headerLogo img {
    width: a
}

.header-nav-link {
    font-size: 18px;
    font-weight: 500
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    z-index: 1000
}

.dropdown-menu span {
    font-weight: 700;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc
}

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

.dropdown-menu ul li {
    padding: 10px;
    cursor: pointer
}

.dropdown-menu ul li:hover {
    background-color: #f0f0f0
}

div#trendingPujas {
    padding: 15px;
    border: 0;
    border-radius: 20px;
    box-shadow: 1px 7px 12px 4px rgba(0, 0, 0, .1);
    margin-top: 15px;
    overflow: auto;
    height: 400px
}

.trending-Pujas h4 {
    font-weight: 700;
    font-size: 18px
}

.all-trending-Pujas,
.filters-categories-body,
.puja_service_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.all-trending-Pujas p {
    margin: 10px;
    border: 1px solid #d4d3d3;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px !important
}

.all-puja-offcanvas-bottom {
    border-radius: 20px 20px 0 0 !important;
    top: 0 !important;
    min-height: 90dvh !important;
    max-height: 100dvh !important;
}

.offcanvas-header.all-puja-offcanvas {
    padding-right: 60px;
    padding-top: 0
}

.all-pujass-row::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    display: none
}

.all-pujass-row::-webkit-scrollbar-track {
    background: #d9d9d9;
    border-radius: 5px;
    display: none
}

.all-pujass-row::-webkit-scrollbar-thumb {
    background: var(--sacred-saffron);
    border-radius: 5px;
    display: none
}

.all-pujass-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 15px 0
}

.all_puja_modal,
.all_puja_modal_2 {
    display: inline-block;
    flex-shrink: 0;
    text-align: center;
    cursor: pointer
}

.all-pujass-section {
    padding: 0;
    background-color: #fff
}

.all-puja-item .all_puja_modal {
    color: var(--sacred-saffron);
    margin-top: 8px
}

.carousel-item img {
    height: auto;
    object-fit: cover
}

.pandit_mobile_slider {
    display: none !important
}

#mediaCarousel .owl-nav,
.pandit_decktop_slider,
.popular-pujas-card:hover .upload-black {
    display: block
}

.pujas_cards::-webkit-scrollbar {
    height: 0
}

.pujas_cards::-webkit-scrollbar-track {
    display: 0px
}

.pujas_cards {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    justify-content: space-between
}

.mediaNews_tittle,
.post-tittle {
    text-overflow: ellipsis;
    white-space: unset;
    overflow: hidden
}

.col_pujas_cards {
    display: inline-block;
    flex-shrink: 0
}

.popular-pujas {
    background-color: #fff8ef;
    padding: 50px 0 20px
}

.mukti-karma-pujas,
.supcoming-pujas {
    background-color: #fffeea
}

.card {
    background-color: transparent;
    border: none
}

.card-img-top,
.mediaNews-cards {
    border-radius: 10px
}

.popular-pujas-card {
    position: relative;
    cursor: pointer;
    overflow: hidden
}

.popular-pujas-card:hover {
    box-shadow: none;
    cursor: pointer
}

.popular-pujas-card-img,
div#loctionModal {
    overflow: hidden
}

.popular-pujas-card:hover img {
    transform: scale(1.1)
}

.popular-puja-tag {
    background-color: #fff;
    width: max-content;
    padding: 2px 18px;
    border-radius: 20px;
    font-size: 12px;
    position: absolute;
    top: 24px;
    left: 24px;
    color: #000;
    font-weight: 500
}

.include-tags ul li {
    font-size: 14px !important;
    color: #544f4d;
    text-align: left
}

.popular-puja-tag p {
    font-size: 12px !important
}

.pujashareIcon {
    position: absolute;
    top: 22px;
    right: 20px
}

.seeAllBtn {
    color: #000;
    border: 1px solid #000;
    font-weight: 700;
    padding: 3px 5px 3px 15px;
    border-radius: 5px;
    text-decoration: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center
}

button.owl-next,
button.owl-prev {
    position: absolute;
    top: 40%;
    background-color: #fff !important;
    height: 38px;
    width: 38px;
    font-size: 32px;
    border-radius: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.shop-99pandit {
    background-color: #eae9d0;
    padding: 50px 0
}

.blog_thumbnail_img,
.shop_item_img {
    border-radius: 15px
}

.owl-theme .owl-nav [class*=owl-] {
    border-radius: 20px !important;
    box-shadow: 0 4.58px 13.73px 3.43px #00000026
}

#feedbackCarousel .owl-nav [class*=owl-] {
    border-radius: 20px !important;
    box-shadow: none
}

button.owl-prev {
    left: -45px;
    align-items: center;
    justify-content: center
}

.owl-next span,
.owl-prev span {
    font-size: 20px;
    font-weight: 600
}

button.owl-next {
    right: -45px;
    align-items: center;
    justify-content: center
}

.owl-nav button span {
    position: relative;
    bottom: 1px;
    left: 1px
}

.how-it-works-content {
    background: #f1f1d9;
    padding: 50px 0;
    overflow: hidden
}

.how-it-work-card-header h3 {
    font-family: Noto Sans;
    font-size: 22px;
    font-weight: 700;
    line-height: 26.4px;
    text-align: center
}

.choose-card-txt span,
.festival-name {
    line-height: 25.2px;
    font-family: Noto Sans
}

.how-it-work-card-body {
    cursor: pointer;
    justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    position: relative
}

.how-it-work-card-body:hover .no-border-img {
    display: none;
    transition: opacity .5s ease-in-out
}

.border-img,
.no-border-img {
    transition: opacity .5s ease-in-out
}

.how-it-work-card-body img:hover {
    transform: scale(1.2)
}

.how-it-work-card-body:hover .border-img {
    display: block;
    transition: 1s
}

.second-img {
    display: inline-block;
    overflow: hidden
}

.how-it-work-card-body:hover .second-img {
    border-radius: 10px;
    border: 3px solid #b10819
}

.how-it-work-card-body:hover .first-img {
    opacity: 0
}

.first-img {
    border-radius: 10px;
    border: 3px solid #f1f1d9
}

.progress,
.progress-value {
    border-radius: 100px;
    height: 10px
}

.how-it-work-line img,
.productApp img,
.puja-name-img img,
.recentPost-cards-body img,
.round_cricle,
.slider-left-right img {
    width: 100%
}

.progress {
    background: #32d8514A;
    align-items: center;
    position: relative;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 75%;
    margin: 0 auto
}

.check,
.check-1,
.check-2,
.check-3 {
    position: absolute;
    top: -21px
}

.progress-value {
    box-shadow: 0 10px 40px -10px #fff;
    background: #e0fa9e;
    width: 0
}

.why-choose-us-cards,
.why-choose-us-cards-2 {
    box-shadow: 0 0 13.73px 3.43px #00000012;
    background-color: #fff
}

@keyframes load {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

.check {
    left: 10%
}

.check-1 {
    left: 35%
}

.check-2 {
    right: 35%
}

.check-3 {
    right: 11%
}

.puja_clash_img_row {
    position: relative;
    padding: 70px 0;
    overflow: hidden
}

.why-choose-us-content {

    overflow: hidden;
    background-color: #f7f8e2
}

.feedback-cards,
.mediaNews-cards,
.recentPost-cards {
    background: #fff;
    box-shadow: 0 0 6.73px 1.43px #00000012
}

.why-choose-us-cards {
    border-radius: 10px;
    border: 1px solid #f4d59a;
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center
}

.choose-card-txt span {
    color: #544f4d;
    font-size: 16px;
    font-weight: bolder;
    text-align: left
}

.choose-card-txt p {
    color: #7f7b7a;
    font-size: 15px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left
}

.why-choose-cards-1 {
    animation: 3s ease-in-out fadeInLeft
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-300px)
    }

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

.why-choose-cards-2 {
    animation: 2s ease-in-out fadeInRight
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(300px)
    }

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

.why-choose-cards-3 {
    animation: 3s ease-in-out forwards fadeToLeft
}

@keyframes fadeToLeft {
    from {
        opacity: 0;
        transform: translateX(0)
    }

    to {
        opacity: 1;
        transform: translateX(-200px)
    }
}

.why-choose-cards-4 {
    animation: 3s ease-in-out forwards fadeToRight
}

@keyframes fadeToRight {
    from {
        opacity: 0;
        transform: translateX(0)
    }

    to {
        opacity: 1;
        transform: translateX(200px)
    }
}

.puja_clash_img {
    position: absolute;
    top: 0;
    animation: 2s ease-in-out 1.5s forwards fadeInBottom;
    opacity: 0;
    overflow: hidden;
    width: auto
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(200px)
    }

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

.why-choose-us-cards-2 {
    border-radius: 10px;
    border: 1px solid #f4d59a;
    padding: 30px;
    width: 80%;
    margin: 30px auto 0
}

.product-about-txt span {
    font-family: Noto Sans;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    color: var(--sacred-saffron)
}

.product-about-txt p {
    font-family: Noto Sans;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color: var(--sacred-saffron)
}

.customerFeedback-minimal-mobile {
    padding: 0px 0;
    padding-top: 20px;

}

.feedback-minimal-scroll-container {
    overflow-x: auto;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.feedback-minimal-scroll-container::-webkit-scrollbar {
    display: none;
}

.feedback-minimal-scroll-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    gap: 12px;
    padding-left: 15px;
    padding-right: 15px;
}

.feedback-card-minimal-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.feedback-avatar-col {
    flex-shrink: 0;
}

.feedback-avatar-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.feedback-avatar-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--sacred-saffron);
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.feedback-content-col {
    flex: 1;
    min-width: 0;
}

.feedback-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.feedback-name {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.feedback-stars {
    color: #f7c948;
    font-size: 9px;
    margin-bottom: 4px;
}

.feedback-text {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    font-size: 11px;
    color: var(--sacred-saffron);
    text-decoration: none;
    font-weight: 600;
}

.scroll-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    border: 1px solid #133240;
    border-radius: 5px;
    padding: 2px 4px;
    font-size: 14px;
    width: max-content;
    margin: 0 auto;
    position: relative
}

#feedbackCarousel .owl-dots {
    position: absolute;
    right: 100px;
    margin-top: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
    max-width: 7%;
    width: 100%
}

.owl-item {
    border: 0 !important
}

.feedback-cards,
.mediaNews-cards {
    border: 1px solid #e7eaec
}

#feedbackCarousel .owl-nav {
    position: absolute;
    top: -30%;
    right: 0
}

#feedbackCarousel .owl-nav .owl-prev {
    position: absolute;
    left: -190px
}

#feedbackCarousel .owl-nav .owl-next {
    position: absolute;
    right: 0
}

#feedbackCarousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px
}

.feedback-cards {
    border-radius: 10px;
    padding: 15px 40px;
    height: 320px
}

.feedback-cards-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.feedback-cards-header img {
    width: auto !important
}

.star-rating {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.feedback-cards-body h6 {
    font-family: Noto Sans;
    font-size: 24px;
    font-weight: 700;
    line-height: 22px;
    text-align: left;
    color: #000
}

.feedback-cards-body p {
    font-family: Noto Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: justify;
    color: #7f7b7a
}

.book_pujas_lable,
.book_pujas_select,
.mediaNews-cards-footer a,
.mediaNews-cards-header h6,
.recentPost-cards-footer a,
.websitelink a {
    font-family: Noto Sans;
    text-align: left
}

#feedbackCarousel .owl-item,
#mediaCarousel .owl-item {
    padding: 15px;
    box-sizing: border-box
}

.mediaNews_tittle {
    overflow-x: hidden;
    overflow-y: hidden;
    height: 6em
}

.mediaNews-cards-footer,
.mediaNews-cards-header {
    padding: 20px 40px
}

.mediaNews-cards-footer {
    height: 200px
}

.mediaNews-cards-footer a {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    text-decoration: none;
    color: #000
}

.mediaNews-cards-header {
    align-items: center
}

.mediaNews-cards-header h6 {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    color: #292321
}

.recentPost-websitelink,
.websitelink {
    justify-content: space-between;
    align-items: center
}

.websitelink a {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: #7f7b7a
}

.clients_review_section,
.our-clients-section,
.recentPost {
    padding: 50px 0
}

.recent_posts_carousel .item {
    padding: 10px
}

.recentPost-cards {
    border: 1px solid #e7eaec;
    border-radius: 10px;
    padding: 30px
}

.festival-name {
    background-color: var(--sacred-saffron);
    padding: 4px 25px;
    border-radius: 26px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 15px auto 0;
    width: max-content
}

.recentPost-cards-footer a {
    font-size: 24px;
    font-weight: 700;
    line-height: 26.4px;
    text-decoration: none;
    color: #000
}

.recentPost-websitelink a,
.recentPost-websitelink span {
    font-family: Noto Sans;
    font-weight: 700;
    color: #7f7b7a;
    text-align: left;
    font-size: 20px
}

.post-tittle {
    height: 7em;
    padding-right: 50px
}

.recentPost-websitelink a {
    line-height: 30px
}

.recentPost-websitelink span {
    line-height: 25.2px
}

.appSection {
    padding: 0 0 50px
}

.cta-new-panditt {
    padding-top: 30px
}

#Eventservice ul:nth-child(2) {
    padding-bottom: 0;
    margin-bottom: 0
}

#Eventservice,
#Eventservice ul {
    margin-bottom: 0
}

#Eventservice ul:nth-child(2) li {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #544f4d
}

.loader {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    width: 82px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px
}

.loader span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    animation: 2s infinite fill-color
}

.loader span:first-child {
    animation-delay: .3s
}

.loader span:nth-child(2) {
    animation-delay: .7s
}

.loader span:nth-child(3) {
    animation-delay: 1.1s
}

@keyframes fill-color {

    0%,
    100% {
        background-color: #ccc
    }

    50% {
        background-color: #333
    }
}

.form-open {
    top: 0 !important
}

i.fa.fa-times {
    color: #ada7a7;
    font-size: 33px
}

.filters-by-categories {
    border: 1px solid #cba1a1;
    border-radius: 6px;
    padding: 10px
}

.filters-categories-header {
    border-bottom: 1px solid var(--sacred-saffron);
    width: 80%;
    margin: 0 auto
}

.filters-categories-item,
.filters-categories-item.active {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    width: max-content;
    font-family: Noto Sans;
    text-align: left
}

.filters-categories-header p {
    color: var(--sacred-saffron);
    font-family: Noto Sans;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    margin-bottom: 10px
}

.filters-categories-item {
    border: 1px solid #292321;
    color: #544f4d;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer
}

.filters-categories-item.active {
    background-color: var(--sacred-saffron);
    color: #fff;
    border-radius: 5px;
    border: 1px solid var(--sacred-saffron)
}

.modal-puja-categories {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    max-height: 100dvh !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #fff !important;
}

.modal-flex-header {
    flex: 0 0 auto !important;
}

.modal-flex-body {
    flex: 1 !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex !important;
    flex-direction: row !important;
    min-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
}

.allpujas_modal-sidebar {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    min-height: 90dvh !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    background-color: #f8f8f8 !important;
    border-right: 1px solid #eee !important;
}

.allpujas_modal-main {
    flex: 1 !important;
    height: 100% !important;
    overflow-y: auto !important;
    min-width: 0 !important;
}

.allpujas_modal-body {
    padding: 0 10px !important;
    margin: 0 !important;
}

.allpujas_modal-sidebar,
.allpujas_modal-main,
.allpujas_modal-body {
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE and Edge */
}

.allpujas_modal-sidebar::-webkit-scrollbar,
.allpujas_modal-main::-webkit-scrollbar,
.allpujas_modal-body::-webkit-scrollbar {
    display: none !important;
    /* Chrome, Safari and Opera */
}

.add-alternate-number,
.add_new_address_2,
.allpujas_modal-header,
.change-numbers,
.updates_mothed {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.modalSearchbar {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex !important;
    width: 100% !important;
}

.modalsearchbarInput {
    border: 0 !important;
    color: #d4d3d3 !important;
    background-color: transparent !important;
}

.modal-pujas-heading {
    font-family: Noto Sans;
    font-size: 32px;
    font-weight: 700;
    line-height: 35.2px;
    text-align: left
}

.modal.bottom-slide-up .modal-dialog {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 10%;
    margin: 0 auto;
    width: 100%;
    animation: .8s slide-up
}

.modal.bottom-slide-up-2 .modal-dialog {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 20%;
    margin: 0 auto;
    width: 100%;
    animation: .8s slide-up
}

@keyframes slide-up {
    from {
        transform: translateY(100%)
    }

    to {
        transform: translateY(0)
    }
}

.modal-content.loction-modal-content {
    border-radius: 22px;
    box-shadow: 0 5.05px 15.15px 3.79px #00000026;
    padding: 0
}

.location-search-input {
    border: 1.1px solid #d4d3d3;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    border-radius: 25px;
    padding: 4px 15px
}

.location-searchBar {
    border: 0;
    border-radius: 25px
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none
}

.compass-marker {
    font-size: 16px;
    font-weight: 700;
    line-height: 21.62px;
    text-align: left;
    color: #34abf4
}

.compass-marker i {
    font-size: 22px;
    margin-right: 8px
}

.loction-modal-dialog .modal-header {
    border-bottom: 0
}

.location-group {
    border: 1.5px solid #d4d3d3;
    padding: 10px 20px
}

.loction-footer h6 {
    padding-left: 25px;
    font-size: 16px
}

.loction-footer h6 i {
    font-size: 16px
}

.location-modal-body {
    padding: 10px 25px
}

.modal-dialog {
    margin-right: auto;
    margin-left: auto
}

.login-modal-content {
    border-radius: 15px;
    background-image: url(../img/om_logo.png);
    background-size: contain
}

.btn-facebook,
.btn-google {
    position: relative;
    text-align: center;
    background-color: #fafafa;
    border: .95px solid #eee;
    color: #616161;
    font-size: 14px;
    padding: 12px 0
}

.login-nav-link,
.login-nav-link.active,
.loginModal_h4 {
    font-family: Noto Sans;
    font-size: 18px;
    text-align: left
}

.btn-google:hover {
    background-color: #fafafa;
    border: 1px solid #eee;
    color: #616161
}

.btn-facebook:hover,
.btn-google:active {
    background-color: #fafafa !important;
    color: #616161 !important
}

.btn-facebook:hover {
    border: .95px solid #eee
}

.btn-google:active {
    border: 1px solid #eee
}

.btn-facebook:active {
    background-color: #fafafa;
    border: .95px solid #eee;
    color: #616161
}

.btn-facebook::before,
.btn-google::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat
}


.evening-text:before,
.or-text:before {
    left: 6px
}

.btn-google::before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%234285F4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/><path fill="none" d="M1 1h22v22H1z"/></svg>')
}

.btn-facebook::before {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"%3E%3Cpath fill="%23039be5" d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5 16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256z"%3E%3C/path%3E%3C/svg%3E')
}

.loginModal_h4 {
    font-weight: 400;
    line-height: 29.02px
}

.login-btn,
.login-nav-link,
.login-nav-link.active {
    line-height: 24px;
    font-weight: 700
}

.login-modal-body {
    padding: 0 0 0 40px
}

.right-login-content {
    border: 1px solid #d4d3d3;
    border-radius: 24px;
    padding: 20px 40px 20px 0;
    background-color: #fff
}

.left-login-content {
    padding: 0px;
}

.login-nav-link.active {
    background-color: #f0312d !important;
    color: #fff
}

.or-text:after,
.or-text:before {
    content: "";
    background-color: #d4d3d3;
    height: 1px;
    width: 42%;
    top: 13px;
    position: absolute
}

.login-nav-link {
    background: #d4d3d3;
    color: #fff;
    padding: 10px 55px;
    border-radius: 0 !important
}

.login-nav-link:hover {
    color: #fff
}

.pandit-login-content,
.user-login-content {
    padding: 20px 50px 0
}

.email-phone-input {
    border: 1px solid #7f7b7a;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 12px
}

.email-phone-input:focus {
    border-color: #f0312d;
    outline: 0;
    box-shadow: none
}

.lable-input:focus-within label {
    color: #f0312d
}

.lable-input label {
    position: absolute;
    background-color: #fff;
    top: -8px;
    left: 30px;
    font-size: 12px;
    z-index: 99;
    padding: 0 5px
}

.eye-btn {
    position: absolute;
    top: 13px;
    right: 14px
}

.login-btn {
    background-color: #f0312d !important;
    border-radius: 25px;
    font-size: 18px
}

.down-text,
.sign-up-txt,
.sign-up-txt_2 {
    font-family: Noto Sans;
    font-size: 12px;
    text-align: center
}

.morning-text:after,
.morning-text:before {
    content: "";
    background-color: #b10819;
    height: 1.4px
}

.sign-up-txt,
.sign-up-txt_2 {
    font-weight: 700;
    line-height: 24.1px;
    color: #000;
    text-decoration: none
}

.down-text {
    font-weight: 400;
    line-height: 24px
}

.puja-name-details h3,
.signUp-h4 {
    text-align: left;
    font-family: Noto Sans
}

.pandit-login-content:not(.show),
.user-login-content:not(.show) {
    opacity: 0;
    display: none
}

.modal-body.signup-modal-body {
    padding: 0 40px 40px
}

.signUp-h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 19.6px;
    color: #000
}

#Eventcontent h2 {
    font-size: 22px;
    margin-bottom: 0
}

.puja-details-modal-dialog .modal-header {
    border-bottom: 0;
    display: block;
    text-align: right
}

.puja-name-details h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 26.4px;
    color: var(--sacred-saffron)
}

.see_more_detiles {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--sacred-saffron);
    border: none;
    cursor: pointer;
    text-align: center;
    margin-left: 8px
}

.puja-name-details p {
    font-family: Noto Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #544f4d
}

.include-tags h4,
.include-tags p {
    font-family: Noto Sans;
    font-weight: 800;
    text-align: left
}

.include-tags h4 {
    font-size: 18px;
    line-height: 25.2px;
    color: #544f4d
}

.include-tags p {
    font-size: 14px;
    line-height: 19.6px;
    color: #7f7b7a
}

.book-pandits-btn,
.book_pandit_proceedBtn,
.clientRaing,
.details-btn,
.our-promise span,
.pandit_book_loction,
.puja-name-img button {
    font-family: Noto Sans;
    font-size: 18px;
    line-height: 25.2px
}

.our-promise {
    border: 1px solid #cba1a1;
    background-color: #f7f7f7;
    border-radius: 6px;
    padding: 10px
}

.clientRaing,
.our-promise span {
    font-weight: 700;
    text-align: left;
    color: #544f4d
}

.our-promise p {
    font-family: Noto Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left
}

.detiles_modals_header {
    padding-right: 0
}

.book-pandits-btn,
.details-btn {
    font-weight: 700;
    color: #fff;
    padding: 10px 50px;
    width: 50%
}

.details-book-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px
}

.address_info,
.clients_info {
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.details-btn {
    gap: 10px;
    border-radius: 5px;
    border: 0;
    background-color: #fbbc58
}

.puja_service_list li {
    width: max-content !important;
    font-size: 14px !important
}

.book-pandits-btn {
    gap: 10px;
    border-radius: 5px;
    border: 0;
    background-color: var(--sacred-saffron)
}

.book-now-btns,
.order-now-btns {
    line-height: 22.17px;
    color: #fffbfb;
    font-weight: 700
}

.puja-name-img button {
    border: 1px solid #a9a7a6;
    background: #fff;
    font-weight: 700;
    text-align: left;
    border-radius: 9px;
    margin-top: 35px;
    padding: 4px 10px;
    color: #7f7b7a;
    display: block
}

.slider-left-right-txt h4,
.slider-left-right-txt p {
    color: #fff;
    text-align: center;
    font-family: Noto Sans
}

.puja-name-img button img {
    width: auto
}

.modal-content.puja-details-modal-content {
    padding: 0 30px 30px
}

.slider-left-right-txt {
    background: linear-gradient(180deg, var(--sacred-saffron) 0, #630c0d 100%);
    border-radius: 0 0 10px 10px;
    padding: 50px 30px;
    text-align: center;
    height: 260px
}

.slider-left-right-txt h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 26.4px
}

.slider-left-right-txt p {
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    margin-bottom: 20px
}

.order-now-btns {
    background: #ff0909;
    padding: 10px 30px;
    border-radius: 52px;
    font-family: Noto Sans;
    font-size: 15.83px;
    text-align: center;
    border: 0
}

.slider-middles {
    background: #fff;
    border-radius: 10px;
    padding: 60px 50px
}

.slider-middles-txt h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    text-align: center;
    color: #000;
}

.book-now-btns {
    background: #ff0909;
    padding: 15px 30px;
    border-radius: 52px;
    font-family: Noto Sans;
    font-size: 20px;
    text-align: center;
    border: 0
}

.slider-middles img {
    margin-bottom: 20px
}

.pandits-informations {
    background: #630c0d;
    border-radius: 10px;
    padding: 70px 50px;
    margin-top: 20px
}

.pandit-joined h3,
.puja-conducted h3 {
    font-family: Noto Sans;
    font-size: 40px;
    font-weight: 800;
    line-height: 44px;
    text-align: center;
    color: #f4d59a
}

.pandit-joined p,
.puja-conducted p {
    font-family: Noto Sans;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    color: #f4d59a
}

.workspace_section {
    background: #fff2f2;
    padding: 50px 0
}

.corporate_puja_banner h1 {
    position: absolute;
    top: 40%;
    color: #fff;
    font-family: Berkshire Swash;
    font-size: 77.73px;
    font-weight: 400;
    line-height: 85.5px;
    text-align: left;
    left: 90px
}

.why-choose .workspace_h1 {
    color: #b10819
}

.round_cricle_girl {
    position: relative;
    width: 100%;
    overflow: hidden
}

.round_cricle img {
    animation: 16s linear infinite animName
}

.workspace_girl {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0
}

.workspace_h1 {
    font-family: Noto Sans;
    font-size: 56px;
    font-weight: 700;
    line-height: 61.6px;
    text-align: left
}

.workspace_p,
.workspace_register_btn {
    line-height: 30px;
    font-family: Noto Sans;
    text-align: left;
    font-size: 20px;
    letter-spacing: .01em
}

.workspace_p {
    font-weight: 400;
    color: #544f4d
}

.workspace_register_btn {
    padding: 14px 20px;
    gap: 10px;
    border-radius: 8px;
    opacity: 0px;
    border: 0;
    background: #b10819;
    color: #fff;
    font-weight: 700
}

.evening-text,
.morning-text {
    font-size: 14px;
    line-height: 19.6px;
    text-align: center;
    position: relative
}

@keyframes animName {
    0% {
        transform: rotate(0)
    }

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

.why-choose {
    padding: 50px 0;
    overflow: hidden
}

.card-body.why-choose-card-body {
    padding: 30px;
    border: 2px solid #fff;
    border-radius: 10px;
    cursor: pointer
}

.why-choose-card {
    box-shadow: 0 4.58px 13.73px 3.43px #00000026
}

.all-corporate-pujas-body,
.clients_review-card,
.video_review-card {
    box-shadow: 0 0 13.73px 3.43px #00000012
}

.card-body.why-choose-card-body:hover {
    cursor: pointer;
    border: 2px solid var(--sacred-saffron)
}

.all-corporate-pujas-body h5,
.why-choose-card-body h5 {
    font-family: Noto Sans;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: #b10819
}

.list-unstyled li,
.why-choose-card-body p {
    text-align: left;
    color: #544f4d;
    font-family: Noto Sans
}

.why-choose-card-body p {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px
}

.all-corporate-pujas {
    background-color: #ededed;
    padding: 50px 0
}

.all-corporate-pujas-body {
    border-radius: 10px;
    padding: 30px;
    background-color: #fff
}

.list-unstyled li {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px
}

.clients_company_name p,
.evening-text,
.loction_bottom_txt,
.morning-text,
.phoneNumber_bottom_text {
    font-weight: 400;
    font-family: Noto Sans
}

.otherPuja_services li,
.videos_reviews_tittle h5 {
    font-size: 18px;
    line-height: 25.2px
}

.morning-text {
    color: #b10819
}

.client_name,
.corporate_enquiry {
    font-weight: 700;
    font-family: Noto Sans
}

.morning-text:before {
    position: absolute;
    width: 35%;
    top: 10px;
    left: 6px
}

.morning-text:after {
    position: absolute;
    width: 35%;
    top: 10px;
    right: 6px
}

.evening-text:after,
.evening-text:before {
    content: "";
    height: .4px;
    width: 35%;
    top: 10px;
    background-color: #b10819;
    position: absolute
}

.otherPuja_services li {
    border-bottom: 1px solid #fff;
    padding: 20px;
    font-family: Noto Sans;
    font-weight: 500;
    text-align: left;
    color: #b10819
}

.otherPuja_services::-webkit-scrollbar {
    display: none;
}

.client_post,
.client_text,
.clients_review-videos span,
.enquiry-form-input,
.videos_reviews_tittle h5 {
    font-weight: 400;
    font-family: Noto Sans
}

.otherPuja_services li:hover {
    background-color: #b10819;
    color: #fff;
    transition: .5s
}

.corporate_enquiry {
    background-color: #b10819;
    color: #fff;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: .01em;
    text-align: left;
    border: 1px solid #b10819
}

.corporate_enquiry:hover {
    background-color: var(--sacred-saffron);
    color: #fff;
    border: 1px solid var(--sacred-saffron)
}

.corporate_enquiry:active {
    background-color: var(--sacred-saffron) !important;
    color: #fff !important;
    border: 1px solid var(--sacred-saffron)
}

.otherPuja_services {
    background-color: #f1f1f1;
    padding: 0;
    border-top: 1px solid #bbb7b7;
    overflow-y: auto;
    height: 100%;
    max-height: 724px;
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE and Edge */
}

.otherPuja_services::-webkit-scrollbar-track {
    background: #d9d9d9;
    border-radius: 5px
}

.otherPuja_services::-webkit-scrollbar-thumb {
    background: #c1bfbf;
    border-radius: 5px
}

.clients_review-card {
    border: 1px solid #e5d0d0;
    width: 100%;
    border-radius: 10px;
    padding: 35px 35px 35px 0;
    max-width: 900px;
    min-width: 900px;
    margin: 10px
}

.clients_images,
.clients_reviews,
.videos_reviews {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    overflow-x: auto;
    cursor: grab;
    user-select: none
}

.clients_images:active,
.clients_reviews:active,
.videos_reviews:active {
    cursor: grabbing
}

.clients_reviews::-webkit-scrollbar {
    width: 0
}

.video_review-card {
    width: 100%;
    border-radius: 10px;
    max-width: max-content;
    padding-left: 0;
    min-width: max-content;
    margin: 10px
}

.videos_reviews::-webkit-scrollbar {
    width: 0
}

.clients_images::-webkit-scrollbar {
    width: 0
}

.client_name {
    font-size: 20px;
    line-height: 28px;
    color: #0f33ee
}

.client_post {
    font-size: 15.63px;
    line-height: 18.75px;
    color: #000
}

.client_text,
.enquiry-form-input {
    font-size: 16px;
    line-height: 22.4px
}

.fa-solid.fa-quote-left,
.fa-solid.fa-quote-right {
    font-size: 36px
}

.client_text {
    text-align: center;
    padding: 0 50px;
    color: #544f4d
}

.fas.fa-star {
    color: #ffffff;
}

.enquiry-form-section {
    padding: 50px 0;
    background: #f5ebe9
}

.enquiry-form-input {
    border-radius: 6px;
    border: 2px solid #fff;
    text-align: left
}

.enquiry-form-input:focus {
    border: 2px solid #fdc8b6;
    color: #000
}

.countery_number {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    background-color: #fff;
    width: 100%;
    border-radius: 6px 0 0 6px
}

.enquiry-form-select {
    box-shadow: 0 0 13.73px 3.43px #00000008;
    border-right: 1px solid #d4d3d3 !important;
    width: 12%;
    border-radius: 6px 0 0 6px;
    border: 0
}

.enquiry-form-submit {
    border-radius: 8px;
    padding: 6px 20px;
    background: #b10819;
    font-family: Noto Sans;
    font-size: 17px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: .01em;
    text-align: center;
    color: #fff;
    border: 0;
    cursor: pointer
}

.address_info {
    background-color: #fff;
    width: 100%;
    border-radius: 6px 0 0 6px;
    padding: .375rem .75rem .375rem 0;
    cursor: pointer
}

.videos_reviews_tittle h5 span {
    font-family: Noto Sans;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px
}

.clients_review-videos span {
    background: #b10819CC;
    font-size: 14px;
    line-height: 19.6px;
    padding: 5px;
    color: #fff;
    position: absolute;
    right: 0
}

.video_play {
    position: absolute;
    left: 43%;
    right: 50%;
    bottom: 0;
    top: 27%
}

.clients_company_name h5 {
    font-family: Noto Sans;
    font-size: 18px;
    font-weight: 700;
    line-height: 25.2px;
    text-align: left;
    color: #292321
}

.clients_company_name p {
    font-size: 15.63px;
    line-height: 18.75px;
    text-align: left;
    color: #000
}

.clients_star_rating {
    text-align: center
}

.clients_info {
    justify-content: space-between;
    padding: 20px
}

.our_clients_review_card {
    width: 100%;
    max-width: max-content;
    padding-left: 20px
}

.closeFormBtns {
    text-align: right;
    margin-bottom: 25px
}

.closeFormBtns button {
    border: 0;
    background-color: transparent;
    font-size: 24px
}

.user_name-loction {
    border: 1px solid #a9a7a6;
    box-shadow: 0 0 4.73px 0 #00000012;
    border-radius: 10px
}

.userName,
.user_selected_pujas_header {
    padding: 20px;
    border-bottom: 1px solid #a9a7a6
}

.loction_bottom_txt {
    font-size: 14px;
    line-height: 19.6px;
    text-align: left;
    color: #544f4d
}

.phone_checkout_page {
    border: 1px solid #d4d3d3;
    border-radius: 10px;
    padding: 20px
}

.phoneNumber_bottom_text {
    font-size: 12px;
    line-height: 22.4px;
    text-align: left;
    color: #292321
}

.email_bottom_text,
.updates_mothed_email {
    font-weight: 400;
    line-height: 19.6px;
    font-size: 14px;
    font-family: Noto Sans
}

.checkbox_input_lable label,
.checkbox_input_lable lable,
.updates_mothed label {
    font-family: Noto Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: center
}

.updates_mothed_input:checked {
    background-color: #b10819;
    border-color: #b10819
}

.updates_mothed_input {
    border-color: #b10819;
    height: 20px;
    width: 20px
}

.address_check_box:focus,
.updates_mothed_input:focus {
    box-shadow: none;
    border-color: #b10819
}

.updates_mothed_email {
    border: 1px solid #a9a7a6;
    text-align: left;
    border-radius: 10px;
    padding: 10px 20px
}

.email_bottom_text {
    text-align: left;
    color: #7f7b7a;
    margin-top: 4px
}

.user_address_detiles,
.user_selected_pujas {
    border: 1px solid #d4d3d3;
    border-radius: 10px
}

.user_address_header {
    border-bottom: 1px solid #a9a7a6;
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center
}

.edit_address {
    color: #000;
    text-decoration: none;
    font-size: 14px
}

.user_detiles_section {
    padding-bottom: 50px
}

.add_new_address,
.add_new_address_2 {
    border: 1px solid #d4d3d3;
    box-shadow: 0 0 4px 0 #00000017;
    background-color: #eee;
    padding: 15px 20px;
    cursor: pointer
}

.place_booking_btn,
.save_ddress {
    letter-spacing: .01em;
    padding: 8px 20px
}

.save_ddress {
    background: #b10819;
    border-radius: 8px;
    font-family: Noto Sans;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #fff;
    border: 0
}

.pujas_Name,
.user_selected_pujas_header h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 25.2px;
    text-align: left;
    font-family: Noto Sans
}

.address_check_box {
    background-color: transparent !important;
    border: 2px solid #092c4c !important;
    height: 20px;
    width: 20px
}

.address_check_box:checked[type=radio] {
    background-image: url(../img/check_cricle.svg);
    filter: brightness(.1);
    height: 20px;
    width: 20px;
    margin: 0
}

.pujas_Name_text {
    font-family: Noto Sans;
    font-size: 14px;
    font-weight: 700;
    line-height: 19.6px;
    text-align: left;
    color: #4d596a
}

.puja_counting {
    border: 1px solid #d4d3d3;
    border-radius: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center
}

.counting_icon {
    border-left: 1px solid #d4d3d3;
    background-color: #efeeee;
    border: 0;
    font-size: 20px
}

.countingNumber {
    font-family: Noto Sans;
    font-size: 20px;
    font-weight: 400;
    line-height: 25.2px;
    text-align: left;
    color: #000
}

.place_booking_btn {
    background: #b10819;
    font-family: Noto Sans;
    font-size: 17px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    animation-timing-function: ease-out;
    animation-duration: .3s;
    border: 0;
    color: #fff;
    border-radius: 10px;
    cursor: pointer
}

.confirmBooking_lable,
.pujas_date {
    font-size: 14px;
    font-weight: 400;
    font-family: Noto Sans
}

.confirmBooking_lable {
    line-height: 19.6px;
    color: #000
}

.pujas_date {
    border: 1px solid #d4d3d3;
    background: #5d759814;
    line-height: 20px;
    letter-spacing: -.0125em;
    text-align: left;
    color: #647896
}

.add-alternate-select-input,
.change-number-select-input {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    border: 1px solid #a9a7a6;
    border-radius: 10px;
    width: 88%
}

.alternate-form-select,
.change-form-select {
    width: 12%;
    border: 0;
    border-right: 1px solid #a9a7a6;
    border-radius: 10px 0 0 10px
}

.alternate-number-input,
.change-number-input {
    border: 0;
    border-radius: 0 10px 10px 0
}

.add-alternate-number-btn,
.change-number-btn {
    width: 10%;
    background: #b10819;
    border-radius: 8px;
    font-family: Noto Sans;
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: .01em;
    text-align: center;
    border: 0;
    padding: 5px 0;
    color: #fff
}

.book_pujas_lable {
    font-size: 14px;
    font-weight: 700;
    line-height: 19.6px;
    color: #544f4d
}

.book_pujas_select {
    background-color: #e1e0e0;
    border: 1px solid #a9a7a6;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    padding: 8px
}

.book_puja_number_input {
    border: 1px solid #a9a7a6;
    border-radius: 10px
}

.book_puja_cuntory_code {
    border: 0;
    border-right: 1px solid #a9a7a6;
    border-radius: 10px;
    padding: 10px;
    background-color: #fff
}

.book_pandit_input {
    border: 0;
    background-color: transparent;
    padding: 10px;
    border-radius: 10px
}

.pandit_book_checkbox {
    border: 2px solid #828282;
    height: 20px;
    width: 20px
}

.pandit_book_checkbox:checked {
    background-color: #000;
    border-color: #000
}

.pandit_book_checkbox:focus {
    box-shadow: none;
    border: 2px solid #828282
}

.pandit_book_checkbox_input label {
    font-family: Noto Sans;
    font-size: 17.58px;
    font-weight: 400;
    line-height: 34.45px;
    text-align: center
}

.book_pandit_proceedBtn {
    background: var(--sacred-saffron);
    font-weight: 700;
    text-align: center;
    border: 0;
    border-radius: 10px;
    color: #fff;
    padding: 10px 20px
}

.pandit_book_loction {
    font-weight: 400;
    text-align: left;
    color: #544f4d
}

.book_pandits_modal_body {
    padding: 0 40px 50px
}

.book_pandit_email_input,
.book_pandit_otp_input {
    border: 1px solid #a9a7a6;
    padding: 10px;
    border-radius: 10px
}

@media (min-width:992px) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 10.333333%
    }
}

@media (max-width:991px) {
    .daterangepicker.dropdown-menu {
        z-index: 999999 !important
    }
}

@media (max-width:767px) {
    .daterangepicker {
        width: 90% !important;
        left: 5% !important
    }

    .modal.fade.show {
        z-index: 999999
    }

    div#form-wrap {
        bottom: 0;
        box-shadow: 0 -7px 4px -1px #00000021;
        padding: 0 20px !important;
        border-radius: 0
    }

    .filter-icon {
        border: 1px solid #d4d3d3;
        padding: 7px 30px;
        border-radius: 10px;
        font-size: 16px;
        width: 100%;
        max-width: max-content
    }

    .puja-categories-filtter {
        display: none;
        padding: 20px;
        margin-bottom: 20px
    }

    .allpujas_modal {
        padding: 0
    }

    .allpujas_modal-header-decktop,
    .header_allPujas.is-sticky .all-pujass-section,
    .language_loction,
    .place_booking_decktop,
    .puja-name-img {
        display: none
    }

    .allpujas_modal-header-mobile {
        padding: 5px 15px;
        display: block
    }

    #feedbackCarousel .owl-dots .owl-dot.active span,
    #mediaCarousel .owl-dots .owl-dot.active span,
    .corporate-pujas .owl-dots .owl-dot.active span,
    .recent_posts_carousel .owl-dots .owl-dot.active span,
    .shop_carousel .owl-dots .owl-dot.active span {
        background: #da8787 !important;
        width: 30px;
        border-radius: 20px !important
    }

    #mediaCarousel .owl-dots .owl-dot span,
    .shop_carousel .owl-dots .owl-dot span {
        background: #d7c8c8 !important;
        margin: 5px 0 !important;
        border-radius: 0 !important
    }

    #mediaCarousel .owl-dots .owl-dot:first-child span,
    .shop_carousel .owl-dots .owl-dot:first-child span {
        border-radius: 10px 0 0 10px !important
    }

    #mediaCarousel .owl-dots .owl-dot:last-child span,
    .shop_carousel .owl-dots .owl-dot:last-child span {
        border-radius: 0 10px 10px 0 !important
    }

    .place_booking_mobile {
        display: block
    }

    .main_header {
        display: inline-block;
        box-shadow: none !important;
    }

    .mobile_bottom_menu {
        align-items: center;
        justify-content: space-around;
        background-color: #fff;
        position: fixed;
        width: 100%;
        bottom: 0;
        padding: 3px 12px;
        flex-direction: row;
        z-index: 999;
        box-shadow: 0 5px 14px 4px #00000026;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
    }

    .bottom_menu_item img {
        display: block;
        margin: 0 auto;
        width: 20px;
    }

    .bottom_menu_item span {
        font-family: Noto Sans;
        font-size: clamp(0.75rem, 2.5vw, 0.875rem);
        font-weight: 400;
        line-height: 19.6px;
        text-align: left;
        color: #544f4d
    }

    .all_puja_modal .all_puja_modal_2 {
        margin-right: 40px
    }

    .panditContainer,
    .panditContainer-2 {
        padding-left: 2rem;
        padding-right: 2rem;
        margin-left: 0;
        margin-right: 0
    }

    .headerSearchbar {
        width: 100%
    }

    .headerSearchbar-2 {
        width: auto
    }

    .col_pujas_cards {
        width: 40%;
        margin-right: 25px
    }

    .user_login_row {
        flex-direction: column-reverse
    }

    .slider-middles-txt {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .book-now-btns {
        background: #ff0909;
        padding: 8px 28px !important;
        border-radius: 52px;
        font-family: Noto Sans;
        font-size: clamp(0.875rem, 3vw, 1.125rem);
        text-align: center;
        border: 0;
        margin: 0 auto;
    }

    .modal-content.puja-details-modal-content {
        padding: 0 15px 30px !important
    }

    #feedbackCarousel .owl-item,
    #mediaCarousel .owl-item,
    .recent_posts_carousel .item {
        padding: 0 !important
    }

    .search input {
        width: 120px
    }

    .menu-icon {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
    }

    .add-alternate-number,
    .allpujas_modal-header,
    .border-img,
    .change-numbers,
    .clients_info,
    .updates_mothed {
        display: block
    }

    .slider-middles {
        padding: 20px 30px
    }

    .slider-middles-txt h4 {
        font-size: 26px
    }

    .slider-owl .owl-item img {
        border-radius: 20px
    }

    .carousel-item,
    .slider-owl .owl-item {
        padding: 0 20px
    }

    .add_new_address_2 label,
    .book_pandit_email_input,
    .book_pandit_input,
    .book_puja_cuntory_code,
    .book_pujas_select,
    .counting_icon,
    .header-nav-link,
    .headerSearchbar i,
    .login_icon_text,
    .searchbarInput {
        font-size: clamp(0.875rem, 3vw, 1.125rem)
    }

    .all-puja-offcanvas-bottom {
        top: 40px;
        border-radius: 0;
        min-height: 90dvh !important;
        max-height: 100dvh !important;
    }

    .fa-solid.fa-quote-left,
    .fa-solid.fa-quote-right {
        font-size: 24px
    }

    .main_header {
        padding: 8px 15px
    }

    .change-form-select,
    .headerLogo img {
        width: 35%
    }

    .alternate-form-select {
        width: 37%
    }

    .add-alternate-number-btn,
    .change-number-btn {
        width: 30%;
        margin-top: 12px
    }

    body {
        /* background-color: #f3f3f3 */
    }

    .clients_review_section,
    .login-modal-body,
    .puja-details-modal-body {
        padding: 0
    }

    .mediaNews,
    .popular-pujas,
    .recentPost,
    .shop-99pandit {
        padding: 20px 0;
        background-color: #fff
    }

    .offcanvas-header.all-puja-offcanvas {
        padding-right: 30px;
        padding-bottom: 0
    }

    .modal-puja-categories {
        padding: 5px
    }

    section.user_detiles_section {
        padding-bottom: 30px
    }

    .client_text {
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 70px
    }

    .why-choose-cards-3 {
        animation: 3s ease-in-out forwards fadeToLeft
    }

    @keyframes fadeToLeft {
        from {
            opacity: 0;
            transform: translateX(-300px)
        }

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

    .why-choose-cards-4 {
        animation: 3s ease-in-out forwards fadeToRight
    }

    @keyframes fadeToRight {
        from {
            opacity: 0;
            transform: translateX(300px)
        }

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

    .puja_clash_img_row {
        padding: 0;
        overflow: visible
    }


    .clients_review-videos img,
    .details-btn,
    .headerSearchbar,
    .puja-name-img img,
    .round_cricle img {
        width: 100%
    }

    .modalSearchbar {
        right: 0 !important;
        top: 0 !important;
    }

    .all-pujass-section,
    section.all-pujass-section.mt-0.mt-lg-2.all-pujass-section_1 {
        top: 100px !important
    }

    section.homeSlider {
        margin-top: 0;
        background-color: #fff;
        padding: 0 0 20px
    }

    .all-pujass-section {
        position: sticky
    }

    .how-it-work-card-header h3 {
        font-size: 18px
    }

    .how-it-work-card-body:hover .second-img {
        border-radius: 10px;
        border: 0
    }

    .second-img {
        border-radius: 10px
    }

    .second-img:hover {
        border: 3px solid #b10819 !important;
        border-radius: 10px
    }

    .border-img {
        border: 3px solid #b10819;
        border-radius: 10px
    }

    .how_works_slider::-webkit-scrollbar {
        height: 0;
        display: none
    }

    .how_works_slider::-webkit-scrollbar-track {
        display: none
    }

    .how_works_slider {
        white-space: nowrap;
        justify-content: space-between;
        flex-wrap: nowrap;
        overflow-x: scroll;
        scroll-behavior: smooth
    }

    .how_works_col {
        width: 100%;
        flex: 0 0 100%
    }

    .updates_mothed_email {
        padding: 8px 10px
    }

    .address_check_box:checked[type=radio] {
        height: 18px
    }

    .place_booking_btn {
        font-size: 16px;
        padding: 5px 20px
    }

    .pujas_date {
        width: 70%
    }

    span#searchLabel {
        width: 30%;
        font-size: clamp(0.875rem, 3vw, 1.125rem);
        color: #7f7b7a
    }

    .magnifying-glass-xmark {
        position: absolute;
        top: 4px
    }

    .pujas_Name,
    .videos_reviews_tittle h5 {
        font-size: 15px
    }

    .pujas_Name_text,
    .seeAllBtn {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem)
    }

    .all-corporate-pujas-body h5,
    .countingNumber,
    .list-unstyled li,
    .mediaNews-cards-footer a,
    .recentPost-websitelink a,
    .recentPost-websitelink span,
    .user_selected_pujas_header h5,
    .why-choose-card-body h5,
    .why-choose-card-body p,
    .workspace_p {
        font-size: 16px
    }

    .puja_name_detiles,
    .user_selected_pujas_header {
        padding: 10px
    }

    .corporate_puja_banner h1 {
        position: absolute;
        top: 23%;
        font-size: 32px;
        left: 18px
    }

    #feedbackCarousel .owl-nav .owl-next,
    #feedbackCarousel .owl-nav .owl-prev,
    #mediaCarousel .owl-nav,
    .check-progress,
    .left-login-content,
    .puja_clash_img {
        display: none
    }

    .workspace_register_btn {
        padding: 8px 15px
    }

    .workspace_p {
        text-align: justify
    }

    .workspace_h1 {
        font-size: 30px;
        line-height: 35px
    }

    .panditContainer-3 {
        margin-left: 0;
        margin-right: 0;
        width: auto
    }

    .login_icon {
        height: 25px;
        width: 25px;
        font-size: 16px
    }

    .mobile_menu_heading {
        padding: 25px 10px
    }

    .loction-modal-dialog {
        padding: 0 15px
    }

    .headerSearchbar {
        padding: 5px 10px;
        margin-top: 10px;
        box-shadow: none !important;
        background-color: #ffffff;
    }

    .how-it-works-content,
    .why-choose-us-content {

        background-color: #fff
    }

    .all_puja_modal,
    .all_puja_modal_2 {
        margin-right: 20px
    }

    .puja-name {
        font-family: Noto Sans;
        font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
        font-weight: 600;
        line-height: 20.5px;
        color: var(--sacred-saffron);
        margin-top: 10px;
    }

    .android_ios_app_img a img {
        width: 100px
    }

    .left_items_content,
    .right_items_content,
    .user_name,
    .user_profile_icon {
        font-size: 16px;
        line-height: normal
    }

    #mobile-menu {
        width: 100%;
        min-height: 90dvh !important;
        max-height: 100dvh !important;
    }

    .how-it-works-content {
        margin-top: 15px;
        margin-bottom: 15px
    }

    .recentPost-cards-footer a {
        font-size: clamp(0.875rem, 3vw, 1.125rem);
    }

    .popular-puja-tag,
    .popular-puja-tag p {
        font-size: 10px !important
    }

    .pujashareIcon img {
        width: 25px
    }

    .pujashareIcon {
        position: absolute;
        top: 10px;
        right: 10px
    }

    .col_pujas_cards {
        width: 40%;
        margin-right: 14px
    }

    .pandit_mobile_slider {
        display: block !important
    }

    .pandit_decktop_slider {
        display: none !important
    }

    .popular-puja-tag {
        top: auto;
        left: 5px;
        bottom: 95.8px;
        border-radius: 0;
        width: 93%;
        text-align: center
    }

    .owl-carousel .owl-item img:first-child {
        height: auto !important;
        width: -webkit-fill-available
    }

    .pujaName {
        font-family: Noto Sans;
        font-size: 12px;
        font-weight: 700;
        line-height: 18px;
        text-align: left
    }

    .totalPuja {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
        line-height: 16px;
        text-align: left;
        color: #000000
    }

    .mobile_menu_items {
        overflow-y: auto
    }

    .nav-icon img {
        width: 68px;
        margin: 0px;
    }

    .modal.bottom-slide-up .modal-dialog {
        top: 5%;
        padding: 0 8px
    }

    .modal.bottom-slide-up-2 .modal-dialog {
        top: 30%
    }

    .pujas-heading {
        font-size: clamp(1.25rem, 5vw, 1.5rem) !important;
        line-height: normal !important;
        font-family: Noto Sans !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;

    }

    .pujas-tagLine {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
        line-height: 14px;
        color: #1a1a1a;
        text-align: left;
    }

    .seeAllBtn img {
        width: 20px
    }

    .PanditNavbar {
        position: absolute;
        top: 100%;
        background: #fff;
        width: 100%;
        padding: 50 0;
        left: 0
    }

    .PanditNavbar .nav-item {
        margin: 10px
    }

    .panditContainer-2 {
        width: auto;
        padding-left: 1rem;
        padding-right: 1rem
    }

    button.owl-prev {
        position: absolute;
        top: auto;
        left: 38%;
        bottom: -55px
    }

    button.owl-next {
        position: absolute;
        top: auto;
        right: 38%;
        bottom: -55px
    }

    #feedbackCarousel .owl-dots {
        right: 0;
        left: 0;
        width: 100%;
        max-width: 40%;
        margin: 0 auto;
        text-align: right
    }

    .panditContainer {
        padding-right: 0;
        padding-left: 0
    }

    .puja-details-modal-dialog {
        max-width: 100%;
        overflow: auto !important
    }

    .puja-name-details {
        margin-top: 0
    }

    .book-pandits-btn {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        padding: 10px 45px
    }

    .login-nav-link {
        padding: 10px 35px
    }

    .workspace_girl img {
        width: 230px
    }

    .workspace_girl {
        position: absolute;
        top: 55px
    }

    .evening-text:after,
    .evening-text:before,
    .morning-text:after,
    .morning-text:before {
        content: "";
        width: 35%
    }

    .clients_review-card {
        min-width: 300px;
        padding: 20px 15px
    }

    .video_play {
        width: auto !important
    }

    .video_review-card {
        min-width: 300px
    }

    .videos_reviews_tittle h5 span {
        font-size: 17px
    }

    .clients_star_rating {
        text-align: center;
        margin-top: 15px
    }

    .enquiry-form-select {
        width: 30%
    }

    .why-choose-us-cards-2 {
        width: 100%;
        margin: 20px auto 0;
        background-color: var(--sacred-saffron);
    }

    .details-book-btn {
        display: block;
        align-items: center;
        gap: 0
    }

    .how-it-work-line img {
        width: 100%;
        height: 28px;
        display: none
    }

    .customerFeedback {
        padding: 15px 0 15px;
        margin-top: 15px
    }

    .btn-subscribe {
        font-weight: 600 !important;
        line-height: 1.5;
        text-align: center;
        padding: .375rem .75rem;
        font-size: clamp(0.75rem, 2.5vw, 0.875rem);
        border-radius: 3.25rem;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        border: 1px solid #fff !important;
        background: transparent !important;
        box-shadow: 0 0 8px #fff;
        color: #fff !important;

        display: block !important;
        width: auto !important;
        margin: 0 auto;
        height: fit-content !important;

        animation: glowPulse 1.5s infinite alternate;
    }

    /*.first-img,.mobile-header .headerLogo,.mobile-header .mobile_loction,.recent_posts_carousel .owl-nav,header .language,header .location,header .search{display:none}*/

    @keyframes glowPulse {
        0% {
            box-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 24px #fff;
        }

        100% {
            box-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff;
        }
    }

    .btn-subscribe:hover {
        box-shadow: 0 0 12px #fff, 0 0 24px #fff, 0 0 36px #fff;
    }

    .topbar-border-span {

        padding: .375rem 1rem;
        width: auto !important;
        border-radius: 50px;
        font-weight: 600;
    }

    span#ticker-close {
        position: absolute;
        top: 5px;
        right: 8px;
        cursor: pointer;
    }

    .mobile-header-logo-location {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-locationnnn {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
        display: contents;
        color: #000000 !important;
        font-weight: 600;
    }

    .mobile_loction {
        display: inline-block !important;
    }

    .header_allPujas {
        position: sticky;
        top: 0;
        right: 0;
        left: 0;
        z-index: 999;
        background-color: #fff;
        /*box-shadow: 4px 4px 4px 0 #00000021;*/
    }

    header.header_allPujas.mobile-header {
        box-shadow: none;
    }

    .panditContainer {
        box-shadow: none;
    }

    .all-pujass-row {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-start;
        width: 100%;
        padding: 8px 0;
    }

    .shop-scroll-wrapper {

        overflow-x: hidden;
        margin: 0 auto;
        padding-bottom: 10px;
    }

    .shop-scroll {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
    }

    .shop-scroll::-webkit-scrollbar {
        display: none;
    }

    .tilted-image-wrapper img {
        height: auto !important;
    }

    .btn-tilted {
        /* font-size: 16px !important; */
        padding: 10px 9px !important;
    }

    .item-shopslider {
        flex: 0 0 auto;
        width: 80vw;
        max-width: 300px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .shop_item_img {
        width: 100%;
        display: block;
        height: auto;
    }

    .custom-scrollbar {
        width: 30vw;
        height: 6px;
        background: #eee;
        border-radius: 3px;
        margin: 8px auto 0;
        position: relative;
        overflow: hidden;
    }


    .scroll-thumb {
        height: 100%;
        background: var(--sacred-saffron);
        width: 20%;
        border-radius: 3px;
        position: absolute;
        left: 0;
        transition: width 0.3s ease;
    }

    .shop-scroll-wrapper {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .seeAllBtn {
        color: #000 !important;
        border: 1px solid #000;
        font-weight: 600;
        padding: 3px 5px 3px 15px;
        border-radius: 26px;
        text-decoration: none;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        align-items: center;
    }

    .choose-card-txt p {
        color: #1e1e1e;
        font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
        font-weight: 400;
        line-height: 16px;
        text-align: left;
        margin-bottom: 5px;
    }

    .choose-card-txt span {
        color: #1e1e1e;
        font-size: clamp(0.875rem, 3vw, 1.125rem);
        font-weight: 600;
        text-align: left;
    }

    .choose-card-img img {
        max-width: 35px;
    }

    .why-choose-us-cards {
        border-radius: 10px;
        border: 1px solid var(--sacred-saffron);
        padding: 0 0 0 10px;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
    }

    .product-about-txt span {
        font-family: Noto Sans;
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        font-weight: 700;
        line-height: 25px;
        text-align: center;
        color: #FFFFFF;
    }

    .product-about-txt p {
        font-family: Noto Sans;
        font-size: clamp(0.4375rem, 2.6vw, 0.875rem) !important;
        font-weight: 500;
        line-height: 28px;
        text-align: center;
        color: #FFFFFF;
    }

    .feedback-cards-body h6 {
        font-family: Noto Sans;
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        font-weight: 700;
        line-height: 22px;
        text-align: left;
        color: #000;
    }

    .feedback-cards-body p {
        font-family: Noto Sans;
        font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
        font-weight: 400;
        line-height: 18px;
        text-align: justify;
        color: #000000;
    }

    .feedback-cards {
        border-radius: 10px;
        padding: 15px 24px;
        height: 170px !important;
    }

    .feedback-cards-header {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex !important;
        justify-content: unset !important;
        align-items: center !important;
    }

    .stars-outer {
        font-size: 0.8rem !important;
    }

    .owl-stage-outer {
        padding: 3px 20px !important;
    }

    .recentPost-scroll-wrapper {
        overflow-x: auto;
        white-space: nowrap;
        position: relative;
        padding-bottom: 10px;
    }

    .recentPost-scroll {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        gap: 20px;
        padding-bottom: 10px;
    }

    .item-recentslider {
        flex: 0 0 auto;
        width: 280px;
    }

    .recentPost-cards {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 12px !important;
        border: 1px solid #e7eaec;
    }

    .recentPost-cards-body img {
        border-radius: 0;
        height: 180px;
        object-fit: cover;
    }

    .recentPost-cards-footer a {
        display: block;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.4;
    }

    #recentPostScrollContent::-webkit-scrollbar {
        display: none;
    }

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

    .festival-name {
        background-color: var(--sacred-saffron);
        padding: 4px 20px;
        border-radius: 26px;
        font-size: clamp(0.875rem, 3vw, 1.125rem);
        font-weight: 600;
        color: #fff;
        margin: 15px auto 0;
        width: max-content;
    }

    .recentPost-websitelink,
    .websitelink {
        justify-content: space-between;
        align-items: center;
        font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    }

    .owl-dots .owl-dot span {
        width: 0px !important;
        height: 0px !important;
    }

    .howitworkstagline {
        text-align: center !important;
        color: var(--sacred-saffron) !important;
    }

    .howitworksheading {
        text-align: center !important;
        color: var(--sacred-saffron) !important;
    }

    .allpujas_modal-sidebar,
    .allpujas_modal-main,
    .allpujas_modal-body {
        scrollbar-width: none !important;
        /* Firefox */
        -ms-overflow-style: none !important;
        /* IE and Edge */
    }

    .allpujas_modal-sidebar::-webkit-scrollbar,
    .allpujas_modal-main::-webkit-scrollbar,
    .allpujas_modal-body::-webkit-scrollbar {
        display: none !important;
        /* Chrome, Safari and Opera */
    }

    .col-12.cataegotytabss {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .headerSearchbar.headerSearchbar-2.modalSearchbar {
        padding: 5px 0;
        margin-top: 5px;
        box-shadow: none;
        background-color: transparent;
    }

    .all-pujass-section_1.is-sticky .panditContainer-2 {
        display: none !important;
    }

    .filters-categories-item {
        border: none;
        border-bottom: 1px solid #ccc !important;
        border-radius: 0px;
        margin-left: 10px;
        cursor: pointer;
    }

    .filters-categories-item::hover {
        background-color: #ccc !important;
    }

    .sidebarnav-icon.filters-categories-item.activetabsmobile {
        background-color: #f1e3e3 !important;
        border: none;
        border-radius: 5px;

    }

    .sidebarnav-icon.filters-categories-item.activetabsmobile.active {
        background-color: #f1e3e3 !important;
        border: none;
        border-radius: 5px;

    }

    .sidebariconscontainer {
        height: auto !important;
        overflow: visible !important;
        display: block !important;
    }


    .row.sidebariconscontainer::-webkit-scrollbar {
        display: none;
    }

    .popular-puja-tag.tagmobile {
        top: auto;
        left: 5px;
        bottom: 46.8px;
        border-radius: 0;
        width: 93%;
        text-align: center;
        display: none;
    }

    p.totalPuja.mobiletotalpuja {
        margin: 0px !important;
        font-size: 10px !important;
        line-height: 16px;
        text-align: left;
        color: #000000;
    }

    .card-body.mobilecardbody.px-0 {
        padding: 0px !important;
        display: block;
    }

    .puja_cards_btns {
        margin-top: 5px;
        font-size: 10px !important;
    }

    .col.mobilecol {
        margin-top: 10px;
        margin-bottom: 20px;
        padding-left: 0;
    }

    h5.card-title.pujaName.mobilepujanametitle {
        font-family: Noto Sans;
        font-size: 12px;
        font-weight: 600;
        line-height: 18px;
        text-align: left;
    }

    div#opencategorytab {
        position: relative;
        width: 40px;
        height: 40px;
        background-color: var(--sacred-saffron);
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0;
        overflow: hidden;
    }


    div#opencategorytab::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: conic-gradient(transparent 0deg,
                #ff4d4d 90deg,
                transparent 180deg,
                #ff4d4d 270deg,
                transparent 360deg);
        animation: rotate 2s linear infinite;
        z-index: 0;
        filter: blur(2px);
    }

    div#opencategorytab img {
        position: relative;
        z-index: 1;
        width: 24px;
        height: 24px;
    }

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

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

    .bottom_menu_item.filters-categories-item.active {
        padding: 0px;
        margin: 0px;
        border-radius: 50%;
    }

    .bottom_menu_item.filters-categories-item {
        margin: 0px !important;
        border-bottom: none !important;
    }

    div#EventdetailsModal {
        min-height: 90dvh !important;
        max-height: 100dvh !important;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
    }

    .puja-details-modal-body {
        flex: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex !important;
        flex-direction: column;
        overflow: hidden !important;
        padding: 0 !important;
    }

    .puja-modal-hero {
        flex-shrink: 0;
        padding: 15px 15px 0;
    }

    .puja-name-details {
        flex: 1;
        overflow-y: auto !important;
        padding: 0 15px 15px;
    }

    .puja-name-details .scrollable-content-area {
        max-height: none !important;
        overflow: visible !important;
        padding-right: 0 !important;
    }

    .modal-action-footer {
        flex-shrink: 0;
        padding: 15px;
        background: #fff;
        border-top: 1px solid #eee;
        z-index: 10;
    }

    div#staticBackdropBook {
        z-index: 999999;
        height: auto !important;
        /* max-height: auto !important; */
        max-height: 90dvh !important;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
    }

    .offcanvas.offcanvas-bottom.all-puja-offcanvas-bottom {
        top: 100px !important;
        min-height: 90dvh !important;
        max-height: 100dvh !important;
    }

    #staticBackdropBook form {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        flex: 1;
        overflow: hidden;
    }

    #staticBackdropBook .form-diff {
        flex-shrink: 0;
        width: 100%;
        margin: 0 auto;
        justify-content: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
    }

    #staticBackdropBook .offcanvas-body {
        flex: 1;
        overflow-y: auto !important;
    }

    #staticBackdropBook .offcanvas-footer {
        flex-shrink: 0;
        padding: 15px;
        background: #fff;
        border-top: 1px solid #eee;
    }

    #staticBackdropBook .btn-red {
        background: var(--sacred-saffron) !important;
        border-color: var(--sacred-saffron) !important;
        color: #fff !important;
        padding: 10px 30px;
        border-radius: 50px;
        font-weight: 600;
    }

    #deliveryMethodModal {
        min-height: 90dvh !important;
        max-height: 100dvh !important;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
    }

    #deliveryMethodModal .offcanvas-header {
        flex-shrink: 0;
    }

    #deliveryMethodModal .offcanvas-body {
        flex: 1;
        overflow-y: auto !important;
        padding: 20px 15px !important;
    }

    #otpVerifyEnquiryPopup {
        min-height: 90dvh !important;
        max-height: 100dvh !important;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
    }

    #otpVerifyEnquiryPopup .offcanvas-header {
        flex-shrink: 0;
    }

    #otpVerifyEnquiryPopup .offcanvas-body {
        flex: 1;
        overflow-y: auto !important;
    }

    #panditEnquirySucessModal {
        min-height: 90dvh !important;
        max-height: 100dvh !important;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
    }

    #panditEnquirySucessModal .offcanvas-header {
        flex-shrink: 0;
    }

    #panditEnquirySucessModal .offcanvas-title {
        flex-shrink: 0;
    }

    #panditEnquirySucessModal .offcanvas-body {
        flex: 1;
        overflow-y: auto !important;
    }

    div#staticBackdropBookInternational {
        z-index: 99999;
    }

    div#service-notfound,
    .category-iamge-hshs {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    div#service-notfound a {
        display: contents;
    }

    img.epujaa.img-fluid {
        width: 80%;
    }

    .row.popupcategory-image {
        overflow-y: scroll;
        height: 700px;

    }

    .row.popupcategory-image::-webkit-scrollbar {
        display: none;
    }

    mobile_menu_heading p {
        font-family: Noto Sans;
        font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
        font-weight: 400;
        line-height: 19.6px;
        text-align: left;
        color: #000;
    }

    .footer-logos-mobile {
        height: auto !important;
        width: 200px !important;
        margin: 0 auto;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
    }

    footer.container-fluid.px-0.footer-container {
        background: var(--sacred-saffron);
        /*margin-bottom: 58px;*/
    }

    .logo_social_links_mobile.abbsskd {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .container-fluid.mobile-footer-top_container {
        background: var(--sacred-saffron-lightest) !important;
    }

    /* =========================================================
   SLIDER-CUSTOM-CODE — Service Category Section
   Spiritual Theme: Saffron / Sacred-Saffron dominant
   ========================================================= */

    /* Root color variables required */
    :root {
        --spiritual-primary: #DAA520;
        --spiritual-primary-dark: #B8860B;
        --spiritual-secondary: #7C3AED;
        --spiritual-secondary-dark: #6B46C1;
        --spiritual-accent: #14B8A6;
        --spiritual-bg-light: #FFFBF5;
        --spiritual-bg-cream: #FFF8F0;
        --spiritual-text-dark: #3E2723;
        --spiritual-text-muted: #6B5B4F;

        --brand-red: var(--sacred-saffron);
        --brand-red-light: #a01d1d;
        --sacred-saffron: #F37420;
        --sacred-saffron-light: #F3AF42;
        --sacred-gold: #FFD700;
        --sacred-yellow: #EED062;
        --sacred-white: #FFFFFF;
        --sacred-cream: #FFF8F0;
        --sacred-green: #4B9B5A;
        --text-dark: #3E2723;
        --text-muted: #6B5B4F;
    }
}


.svc-category-section {
    width: 100%;
    padding: 0 10px;
}

.svc-category-header {
    text-align: center;
    margin-bottom: 14px;
}



.svc-main-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--brand-red) !important;
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
    margin: 0;
    line-height: 1.4;
    min-height: unset !important;
    width: auto !important;
}

/* Responsive adjustments */
@media (max-width: 380px) {
    .svc-category-grid {
        gap: 5px;
    }

    .svc-cat-icon-wrap {
        width: 48px;
        height: 48px;
    }

    .svc-cat-icon-wrap img {
        width: 30px;
        height: 30px;
    }

    .svc-cat-label {
        font-size: 10px;
    }

    .svc-category-item {
        padding: 8px 3px 6px;
        border-radius: 10px;
    }

    .svc-main-title {
        font-size: 13px !important;
    }
}

@media (max-width: 320px) {
    .svc-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================================
   END Service Category Section
   ========================================================= */


.contact-text {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
    margin-bottom: 0 !important;
}

.col-12.copiright-text_mobile {
    text-align: center;
    font-size: clamp(0.875rem, 3vw, 1.125rem);
    color: var(--sacred-saffron);
    font-weight: 500 !important;
    padding: 5px 0;
    background-color: #ffffff;
}

.mobile-border {
    border-bottom: 1px solid #9f4444 !important;
    border-top: none !important;
    padding: 5px 10px !important;
}

.privacy-policy-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-top: 10px;
    justify-content: unset !important;
    flex-direction: row;
    gap: 10px;
}

ul.quick_links_footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    column-gap: 20px;
}

.privacy-policy-mobile a {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
}

div#clientLoginFormModal {
    z-index: 99999;
    min-height: 90dvh !important;
    max-height: 100dvh !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.col-lg-12.right-login-content {
    border: 1px solid #d4d3d3;
    border-radius: 24px;
    padding: 30px;
    background-color: #fff;
}

div#otpModal {
    height: 80%;
}

div#deliveryMethodModal {
    height: 69%;
}

button#whatsappDelivery {
    background: #25d366;
    color: #fff;
    border: none;
}

button#smsDelivery {
    background: var(--sacred-saffron);
    color: #fff;
    border: none;
}

.note-p-mobile {
    margin-top: 25px;
    text-align: left;
    padding: 0px 19px;
    font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
}

div#otpVerifyEnquiryPopup {
    height: 87%;
}


.after-enquirysucess-btncontainer {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-error_mobileshow {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;

}

.error_show.alert .alert-success {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
    width: 80%;
}

.verifiopthhds {
    padding: 0px 19px;
}

button.btn.btn-outline-red.search-btn {
    height: max-content !important;
}

ul#pills-tab li {
    margin: 0;
    width: auto !important;

}

ul#pills-tab {
    justify-content: unset !important;

    border-radius: 5px;
}

button.nav-link.nav-link-red {
    padding: 5px 20px;
    border: 1px solid white;
    margin: 5px;
}

.input-group {
    flex-wrap: nowrap;
    width: auto;
}

.search-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    /*align-items: center;*/
    justify-content: space-between;
}

div#filter-iconsss {
    padding: 5px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}


input[type=radio]:checked {
    accent-color: #ffc107
}

.form-check-input:checked {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important
}

input[type="radio"]:checked+label {
    color: var(--sacred-saffron);
    font-weight: bold;
}

.blog-sidebar-img {
    display: none !important;
}


.Button-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8%;
}


.Button-container.btn-red {
    background-color: var(--sacred-saffron) !important;
    color: #fff !important;
    border-color: var(--sacred-saffron) !important;
    border-radius: 30px;
    font-size: 16px;
    padding: 12px 12px !important;
}

.tittle-name {
    font-size: clamp(18px, 6vw, 24px) !important;
    margin-bottom: 20px !important;
    font-weight: bolder;
}

.enquire_book_pandit22mobside {
    position: fixed;
    top: 200px;
    right: -40px;
    z-index: 9999;
    display: block;
    transform: rotate(-90deg);
}

.book-pandits-btn-side.mobile {
    background-color: red;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.upfront-paytc {
    font-size: 12px;
    color: var(--sacred-saffron);
}

form#pandit_book_form_pop {
    /*height: vh;*/
    overflow: scroll;
    /*height: 500px;*/

}

form#pandit_book_form_pop::-webkit-scrollbar {
    display: none;
}

form#international_enquiry_form {
    /*height: vh;*/
    /*overflow-y: scroll;*/
    /*height: 500px;*/
}

form#international_enquiry_form::-webkit-scrollbar {
    display: none;
}

#EventdetailsModal::-webkit-scrollbar {
    display: none;
}

@media (max-width:375px) {
    .workspace_girl img {
        width: 185px
    }

    .pujas_date {
        width: 90%
    }

    .puja_counting {
        position: relative;
        right: 16px
    }

    .loction_change,
    .phoneNumber,
    .userLoction span,
    .userName span {
        font-size: 16px
    }

    .loction_bottom_txt {
        font-size: 12px
    }

    span#searchLabel {
        width: 100%;
        font-size: 14px;
        max-width: max-content
    }
}

@media (min-width:992px) and (max-width:1024px) {
    .why-choose-us-cards {
        padding: 15px
    }

    .post-tittle {
        padding-right: 0
    }

    .recentPost-cards-footer a {
        font-size: 18px
    }

    .recentPost-websitelink a,
    .recentPost-websitelink span {
        font-size: 16px
    }

    .filters-categories-item,
    .filters-categories-item.active {
        font-size: 14px;
        padding: 6px
    }

    .filters-categories-header p {
        font-size: 16px;
        line-height: 18px
    }

    .col_pujas_cards {
        width: 25%;
        margin-right: 25px
    }

    #mobile-menu {
        width: 35%;
        min-height: 90dvh !important;
        max-height: 100dvh !important;
    }
}

@media (min-width:1025px) and (max-width:1399px) {
    .col_pujas_cards {
        width: 23%;
        margin-right: 15px
    }

    .recentPost-cards-footer a {
        font-size: 20px
    }

    #mobile-menu {
        width: 30%;
        min-height: 90dvh !important;
        max-height: 100dvh !important;
    }
}



#feedbackCarousel .owl-dots {
    max-width: 19%;
    width: 100%;
    margin: 15px auto 0
}


.owl-carousel .owl-item img:first-child {
    height: auto !important;
    width: -webkit-fill-available;
    margin: unset !important
}




.why-choose-cards-3 {
    animation: 3s ease-in-out forwards fadeToLeft
}

@keyframes fadeToLeft {
    from {
        opacity: 0;
        transform: translateX(-300px)
    }

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

.why-choose-cards-4 {
    animation: 3s ease-in-out forwards fadeToRight
}

@keyframes fadeToRight {
    from {
        opacity: 0;
        transform: translateX(300px)
    }

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



.panditContainer-3 {
    margin-left: 2rem;
    margin-right: 2rem
}

.enquiry-form-select {
    width: 25%
}

#mobile-menu {
    width: 100%;
    min-height: 90dvh !important;
    max-height: 100dvh !important;
}

span#searchLabel {
    width: 100%;
    color: #7f7b7a;
    max-width: max-content
}

@media (max-width:500px) {

    .left_items_content,
    .right_items_content,
    .user_name,
    .user_profile_icon {
        font-size: 14px;
        line-height: normal
    }

    .login-nav-link {
        padding: 10px 25px
    }

    .android_ios_app_img a img {
        width: 90px
    }

    .details-btn {
        padding: 10px 40px
    }

    .book-pandits-btn {
        padding: 10px 20px
    }
}

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

    button.owl-next,
    button.owl-prev {
        position: absolute;
        top: auto;
        bottom: -55px
    }

    .all_puja_modal {
        margin-right: 70px
    }


    button.owl-prev {
        left: 43%
    }

    button.owl-next {
        right: 43%
    }

    .morning-text:after,
    .morning-text:before {
        height: 1px
    }

    #feedbackCarousel .owl-nav .owl-next,
    #feedbackCarousel .owl-nav .owl-prev,
    .left-login-content {
        display: none
    }

    #feedbackCarousel .owl-dots {
        right: 0;
        left: 0
    }

    .login-modal-body {
        padding: 0
    }

    .login-nav-link {
        padding: 10px 35px
    }

    .puja-name-details {
        margin-top: 30px
    }

    .book-pandits-btn,
    .details-btn {
        width: 50%;
        padding: 10px
    }

    .puja-name-img img {
        width: 100%
    }

    .puja-name-img button img,
    .round_cricle img {
        width: auto
    }

    .clients_review-card {
        min-width: 660px;
        padding: 20px 15px
    }

    .why-choose-us-cards-2 {
        width: 100%;
        margin: 20px auto 0
    }
}

@media only screen and (max-width:991px) {
    .enquire_now {
        display: block;
        position: fixed;
        bottom: 0;
        z-index: 99999 !important
    }

    .navbar-nav li {
        text-align: left
    }
}


@media only screen and (min-width:1025px) and (max-width:1366px) {

    .why-choose-us-cards {
        height: 290px
    }

    .slider-middles {
        padding: 40px 50px
    }

    .slider-left-right-txt {
        height: 280px
    }

    .pandits-informations {
        padding: 35px 50px
    }

    .recentPost-cards-footer a:nth-child(2),
    .recentPost-websitelink span {
        font-size: 16px
    }

    .post-tittle {
        height: 5em;
        padding-right: 0
    }
}

@media (min-width:1367px) and (max-width:1600px) {

    .why-choose-us-cards {
        height: 290px
    }

    .slider-middles {
        padding: 40px 50px
    }

    .slider-left-right-txt {
        height: 280px
    }

    .pandits-informations {
        padding: 35px 50px
    }

    .recentPost-cards-footer a:nth-child(2),
    .recentPost-websitelink span {
        font-size: 16px
    }

    .post-tittle {
        height: 5em;
        padding-right: 0
    }
}

.daterangepicker {
    width: min-content !important;
    padding-left: .5rem !important;
    padding-right: 1.5rem !important
}

#daterangp {
    position: relative;
    width: 100%;
    text-align: left
}

input[type=date]::-webkit-calendar-picker-indicator {
    background: 0 0;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto
}

.login_button,
.login_button:hover {
    background-color: var(--sacred-saffron);
    color: #fff
}

html {
    margin-top: 0 !important
}

.active>.page-link,
.page-link.active {
    background: #fff !important;
    border: 1px solid var(--sacred-saffron) !important;
    color: var(--sacred-saffron) !important
}

button.nav-link.nav-link-red {
    padding: .5rem;
    font-weight: 500;
    width: max-content;
}

@media (max-width:768px) {

    .reel-slider-container,
    .reel-slider-wrapper {
        max-height: 530px;
    }
}

.pujadetails-jsdjd {
    overflow: auto;
    height: 80dvh;
    scrollbar-width: none;
}

.pujadetails-jsdjd .col-lg-4 {
    display: none;
}

.puja-name-details h3 {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
}

.puja-name-details p {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
}

.include-tags ul liP {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
}

.book-pandits-btn,
.details-btn {
    font-size: clamp(0.90rem, 2.5vw, 0.875rem) !important;
}

.see_more_detiles {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
}

/*.row.py-3.mb-3 {*/
/*    display: none;*/
/*}*/
.offcanvas-body {
    /*flex-grow: 1;*/
    /*padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);*/
    overflow-y: unset;
    padding: 10px;
}

.custom-select-option,
.select-value {
    color: #1e293b;
    font-size: 12px;
}

.select-dropdown.drop-up {
    bottom: 100%;
    top: auto;
    margin-bottom: 5px;
}

.select-dropdown:not(.drop-up) {
    top: 100%;
    margin-top: 5px;
}


.reel-slider-container,
.reel-slider-wrapper {
    max-height: 530px;
}

.pujadetails-jsdjd {
    overflow: auto;
    height: 80dvh;
    scrollbar-width: none;
}

.pujadetails-jsdjd .col-lg-4 {
    display: none;
}

.puja-name-details h3 {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
}

.puja-name-details p {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
}

.include-tags ul liP {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
}

.book-pandits-btn,
.details-btn {
    font-size: clamp(0.90rem, 2.5vw, 0.875rem) !important;
}

.see_more_detiles {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem) !important;
}

/*.row.py-3.mb-3 {*/
/*    display: none;*/
/*}*/
.offcanvas-body {
    /*flex-grow: 1;*/
    /*padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);*/
    overflow-y: unset;
    padding: 10px;
}

.custom-select-option,
.select-value {
    color: #1e293b;
    font-size: 12px;
}

.select-dropdown.drop-up {
    bottom: 100%;
    top: auto;
    margin-bottom: 5px;
}

.select-dropdown:not(.drop-up) {
    top: 100%;
    margin-top: 5px;
}


/*all-pujass-section.is-sticky{box-shadow:0 4px 4px 0 #00000021}*/


/*add new css mdan 20-8-25*/
/* Modern Mobile Hero Redesign */
.mobile-hero-section {
    background: linear-gradient(135deg, #FFFBF5 0%, #FFF8F0 100%);
    padding: 30px 15px 40px;
    border-bottom: 1px solid rgba(243, 116, 32, 0.1);
}

.mobile-hero-logo.mb-4 {
    margin-bottom: 1.5rem;
}

.mobile-hero-logo img {
    max-height: 50px;
    width: auto;
}

.mobile-trust-badge .badge-text {
    background: #059669;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.mobile-hero-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #3E2723;
    margin-top: 15px;
    margin-bottom: 25px;
}

.mobile-search-container {
    margin: 0 auto 30px;
    position: relative;
}

.mobile-search-wrapper {
    background: #fff;
    border-radius: 50px;
    padding: 5px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(243, 116, 32, 0.15);
    border: 1px solid rgba(243, 116, 32, 0.2);
}

.mobile-search-wrapper .search-icon {
    color: #F37420;
    margin-right: 10px;
}

.mobile-search-input {
    border: none;
    outline: none;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #3E2723;
    background: transparent;
}

.mobile-achievements {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.achievement-card {
    background: #fff;
    padding: 15px 10px;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(243, 116, 32, 0.1);
}

.achievement-val {
    font-size: 18px;
    font-weight: 800;
    color: #F37420;
    margin-bottom: 2px;
}

.achievement-lbl {
    font-size: 11px;
    color: #6B5B4F;
    font-weight: 600;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
}

.search-dropdown.active {
    display: block;
}

.search-dropdown-item {
    padding: 12px 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #3E2723;
    text-align: left;
}

.search-dropdown-item .puja-thumb {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

.search-dropdown-item span {
    font-size: 14px;
    font-weight: 500;
}

.achievement-icon {
    font-size: 24px;
    color: #F37420;
    margin-bottom: 10px;
    display: block;
}

/* ========================================
   Recommended Puja Section (Mobile)
   ======================================== */

.recommended-pujas-section {
    background: #FFFFFF;
    padding: 5px 10px 30px 10px;
}

.recommended-pujas-section .pujas-heading {
    color: var(--sacred-saffron);
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.recommended-pujas-section .pujas-tagLine {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
}

/* Category Tabs */
.puja-category-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 15px;
    margin-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.puja-category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    background: #FFFAF0;
    /* Sacred light background */
    border: 1.5px solid #FFDAB9;
    border-radius: 25px 25px 8px 8px;
    /* Temple Dome Shape */
    padding: 8px 16px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;

}

.category-tab.active {
    background: linear-gradient(135deg, var(--sacred-saffron), #EE6C4D);
    border-color: #DAA520;
    /* Gold touch */
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
    transform: translateY(-2px);
}

.category-tab span {
    font-size: 11px;
    font-weight: 600;
    color: #4A4A4A;
}

.category-tab.active span {
    color: #FFFFFF;
}

/* Puja Services Grid - 2 Column Grid on Mobile */
.puja-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 0px;
}

/* Puja Service Card - Vertical Design */
.puja-service-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #EDEDED;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: auto;
    text-decoration: none !important;
    padding: 0;
}

.puja-card-image {
    width: 100%;
    height: max-content !important;
    position: relative;
    overflow: hidden;
}

.new-booking-form {
    margin-top: 15px;
}

.form-component {
    padding: 0rem !important;
}

.puja-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.puja-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--sacred-saffron);
    color: #FFF;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 1;
}

.puja-card-content {
    padding: 10px 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.puja-card-title {
    font-size: 13px !important;
    font-weight: 700;
    color: #3E2723;
    margin-bottom: 5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.puja-card-stats {
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.puja-rating {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 3px;
    color: #DAA520;
    font-size: 12px;
}

.puja-conducted {
    font-size: 10px;
    color: #888;
}

.puja-card-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
}

.view-details-btn {
    background: #FFF;
    border: 1px solid var(--sacred-saffron);
    color: var(--sacred-saffron);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.book-puja-btn {
    background: linear-gradient(135deg, #EE6C4D, var(--sacred-saffron));
    border: none;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(238, 108, 77, 0.2);
}

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

/* ========================================
   Styles moved from page-homemobile.php
   ======================================== */

.star-rating {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
}

.stars-outer {
    position: relative;
    font-size: 1.5rem;
    color: #d3d3d3;
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    color: #ffc107;
}

.stars-outer::before {
    content: "\f005 \f005 \f005 \f005 \f005";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ffc107;
}

.stars-inner::before {
    content: "\f005 \f005 \f005 \f005 \f005";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

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

    .enquire_book_pandit,
    .mobile-footer-cta {
        display: none !important;
    }
}

/* Customer Feedback Styles */
.feedback-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 6.73px 1.43px #00000012;
    position: relative;
    height: 350px;
}

.quotation-mark {
    font-size: 40px;
    color: #ffb400;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 20px;
}

.feedback-review-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-top: 30px;
    height: 160px;
}

.feedback-reviewer-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.feedback-reviewer-avatar {
    background-color: var(--sacred-saffron) !important;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.feedback-reviewer-details {
    flex-grow: 1;
}

.feedback-reviewer-name {
    font-weight: 600;
    font-size: 16px;
}

.feedback-reviewer-meta {
    font-size: 13px;
    color: #888;
}

.feedback-reviewer-stars {
    color: #ffb400;
    font-size: 16px;
}

.google-badge {
    margin-left: 10px;
}

.feedback-review-card i {
    color: #ffb400;
}

.feedback-swiper-pagination span.swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    background-color: #b98181;
}

.feedback-swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--sacred-saffron);
    height: 14px;
    width: 14px;
}

@media (max-width: 767px) {
    .feedbackreviewSwiper {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden;
    }

    .feedbackreviewSwiper .swiper-wrapper {
        margin-left: 0 !important;
    }

    .feedbackreviewSwiper .swiper-slide {
        width: 100% !important;
        flex: 0 0 100% !important;
        margin-right: 0 !important;
    }

    .feedback-review-card {
        margin: 0 !important;
    }
}

/* ========================================
   Popular Cities Grid Layout (Mobile Redesign)
   ======================================== */
.city-grid-item {
    display: block !important;
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    aspect-ratio: 1 / 1 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    background: #fff !important;
}

.city-grid-item:active {
    transform: scale(0.95) !important;
}

.city-image-container {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

.city-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.8s ease !important;
    transform: scale(1.1);
}

.city-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%) !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    padding: 6px !important;
    transition: opacity 0.3s ease !important;
}

.city-name {
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-align: center !important;
    margin-bottom: 5px !important;
    z-index: 1 !important;
    letter-spacing: 0.3px !important;
}

@media (max-width: 400px) {
    .city-name {
        font-size: 11px !important;
    }

    .city-overlay {
        padding: 8px !important;
    }
}

.col-custom-5 {
    width: 20% !important;
    flex: 0 0 auto !important;
}

.city-grid-col {
    width: 20% !important;
    flex: 0 0 20% !important;
    max-width: 20% !important;
    padding: 2px !important;
}

/* ========================================
   View All Cities Button (Saffron Redesign)
   ======================================== */
.view-all-cities-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--sacred-saffron) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(243, 116, 32, 0.2) !important;
    font-size: 14px !important;
    margin-top: 5px !important;
}

.view-all-cities-btn:active {
    background: var(--sacred-saffron-light) !important;
    transform: scale(0.98) !important;
}

.view-all-cities-btn i {
    transition: transform 0.3s ease !important;
    font-size: 12px !important;
}

.view-all-cities-btn:hover i {
    transform: translateX(4px) !important;
}

/* ========================================
   How It Works - Mobile Redesign
   ======================================== */

.how-it-works-section-mobile {
    background: #fff;
    padding: 20px 0;
    position: relative;
}

.how-it-works-flow-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding: 20px 10px;
}

/* Vertical Connecting Line */
.connection-line-container-mobile {
    position: absolute !important;
    top: 40px !important;
    bottom: 40px !important;
    left: 35px !important;
    width: 3px !important;
    z-index: 0 !important;
}

.connection-line-mobile {
    width: 100% !important;
    height: 100% !important;
    background: #f0f0f0 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.connection-line-fill-mobile {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(180deg, transparent, var(--sacred-saffron), transparent) !important;
    background-size: 100% 50% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    opacity: 0.5 !important;
    animation: flowLineVertical 3s linear infinite !important;
}

.connection-line-circle-mobile {
    width: 10px !important;
    height: 10px !important;
    background: var(--sacred-saffron) !important;
    border-radius: 50% !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    box-shadow: 0 0 10px var(--sacred-saffron) !important;
    animation: moveCircleVertical 8s linear infinite !important;
    z-index: 2 !important;
}

@keyframes flowLineVertical {
    0% {
        background-position: 0 -100%;
    }

    100% {
        background-position: 0 200%;
    }
}

@keyframes moveCircleVertical {
    0% {
        top: 0;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.process-step-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    position: relative !important;
    z-index: 1 !important;
    transition: transform 0.3s ease !important;
}

.process-step-mobile:active {
    transform: scale(0.98) !important;
}

.step-icon-wrapper-mobile {
    position: relative !important;
    width: 50px !important;
    height: 50px !important;
    background: #fff !important;
    border-radius: 50% !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid #f5f5f5 !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.step-icon-mobile i {
    font-size: 22px !important;
    color: var(--sacred-saffron) !important;
}

.step-number-mobile {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    width: 20px !important;
    height: 20px !important;
    background: var(--sacred-saffron) !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 10px !important;
    border: 2px solid #fff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.step-content-mobile {
    flex: 1 !important;
    padding-top: 2px !important;
}

.step-title-mobile {
    font-size: 17px !important;
    font-weight: 700 !important;
    margin-bottom: 2px !important;
    color: var(--text-dark) !important;
    font-family: "Noto Sans", sans-serif !important;
}

.step-desc-mobile {
    font-size: 13px !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* ========================================
   View All Reviews Button (Saffron Outlined Redesign)
   ======================================== */
.view-all-reviews-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    color: var(--sacred-saffron) !important;
    padding: 10px 24px !important;
    border: 2px solid var(--sacred-saffron) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
    margin-top: 5px !important;
}

.view-all-reviews-btn:active,
.view-all-reviews-btn:hover {
    background: var(--sacred-saffron) !important;
    color: #fff !important;
    transform: scale(0.98) !important;
}

.view-all-reviews-btn i {
    transition: transform 0.3s ease !important;
    font-size: 12px !important;
    color: inherit !important;
}

.view-all-reviews-btn:hover i {
    transform: translateX(4px) !important;
}

/* Puja Modal Service Card Mobile Styles */
@media (max-width: 991px) {
    .puja-card-title[data-bs-toggle="modal"] {
        cursor: pointer;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .puja-card-title[data-bs-toggle="modal"]:hover {
        color: #F37420;
        /* Sacred Saffron */
        text-decoration: underline;
    }


}

.puja-name-details #Eventservice {
    display: block !important;
}

.android_ios_app {
    /* display: -webkit-box;
    display: -webkit-flex;
    display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    text-align: center;
}

.android_ios_app_img {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

div#clientLoginFormModal {
    z-index: 99999;
    min-height: 90dvh !important;
    max-height: 90dvh !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.modal-content.login-modal-content {
    background: var(--sacred-saffron) !important;
}

.btn {
    background: var(--sacred-saffron) !important;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.pm-item-icon .fa-star {
    color: #f37420;
}

.panchang-mobile-section {
    padding: 16px 16px 4px;
}

.panchang-mobile-card {
    background: #fff0f0;
    border: 1px solid rgba(243, 116, 32, 0.14);
    border-radius: 26px;
    overflow: hidden;
    margin: 0 10px;
}

.panchang-mobile-header {
    padding: 20px 18px 0;
}

.panchang-mobile-title-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.panchang-mobile-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.panchang-mobile-date {
    font-size: 12px;
    color: var(--text-muted);
}

.panchang-tithi-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;
    padding: 18px 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.panchang-tithi-label {
    display: inline-block;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.panchang-tithi-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
}

.panchang-tithi-time {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.panchang-mobile-body {
    padding: 0 18px 20px;
}

.panchang-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.pm-grid-item {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(243, 116, 32, 0.12);
    padding: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 12px;

}

.wide-item {
    grid-column: span 2;
}

.pm-item-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 116, 32, 0.11);
    color: var(--sacred-saffron);
    border-radius: 14px;
}

.pm-item-icon i,
.pm-item-icon .fa-star {
    font-size: 16px;
}

.panchang-widget-toggle {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    text-align: left;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panchang-mobile-top-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.panchang-header-actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panchang-header-icon {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(243, 116, 32, 0.11);
}

.panchang-header-icon img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.panchang-mobile-card.collapsed .panchang-mobile-body,
.panchang-mobile-card.collapsed .panchang-mobile-footer {
    display: none;
}

.panchang-toggle-icon {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(243, 116, 32, 0.08);
    color: var(--sacred-saffron);
    transition: transform 0.25s ease;
    align-self: anchor-center;
}

.panchang-mobile-card.expanded .panchang-toggle-icon {
    transform: rotate(180deg);
}

.panchang-mobile-card {
    transition: all 0.3s ease;
}

.panchang-mobile-card.expanded {
    /* box-shadow: 0 28px 40px rgba(0, 0, 0, 0.12); */
}

.pm-item-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

.pm-item-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.pm-item-value {
    margin-top: 4px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 700;
}

.panchang-mobile-footer {
    padding: 0 18px 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.view-panchang-btn-mob {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 280px;
    margin: 0 auto;
    padding: 12px 18px;
    background: var(--sacred-saffron);
    color: #fff !important;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
}

.view-panchang-btn-mob:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(243, 116, 32, 0.22);
}

@media (max-width: 480px) {
    .panchang-mobile-title-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .panchang-mobile-title {
        font-size: 16px;
    }

    .panchang-mobile-grid {
        gap: 10px;
    }

    .pm-grid-item {
        padding: 14px;
    }
}

.book-puja-btn {
    width: 100%;
    padding: 10px 8px !important;
    font-size: 11px !important;
}

.load-more-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    background: var(--sacred-white);
    color: var(--sacred-saffron);
    border: 2px solid var(--sacred-saffron);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--sacred-saffron);
    color: var(--sacred-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 116, 32, .2);
}

.question h3 {
    font-size: 14px;
    font-weight: 600;
    font-family: system-ui;
}

.question p {
    font-size: 13px;
}

.puja-card-content {
    padding: 10px !important;
}

.puja-rating {
    display: block !important;
}

.puja-card-image {
    height: max-content;
}

.puja-card-image img {
    height: auto !important;
}

.question {
    font-size: 14px;
}

.book_call_btn {
    column-gap: 6px;
}

.bookPandit,
.callPandit {
    font-size: 13px !important;
    padding: 10px 15px !important;
}

.panditcityContainer {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
    padding-bottom: 30px;
    padding-top: 30px;
}

.booking-benefits {
    margin-top: 20px;
}

.panchang-controls-card h1 {
    font-size: 20px !important;
}


ul.other-cities {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    /* justify-content: space-between; */
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    column-gap: 30px;
}

.other-cities li {
    color: var(--text-dark) !important;
    font-weight: 500;
}

span#showCitys {
    font-weight: 600;
    font-size: 22px;
}

/* ==========================================================================
   Hero Brand Mobile (hbm-*) — replaces old slider-custom-code / svc-mini
   ========================================================================== */

.hbm-root {
    margin-bottom: 0;
    overflow: visible;
}

.hbm-hero {
    width: 100%;
    border-radius: 0 0 28px 28px;
    position: relative;
    overflow: hidden;
}

.hbm-hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.hbm-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px 52px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.50) 60%, transparent 100%);
    text-align: center;
}

.hbm-hero-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hbm-book-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    width: auto;
    background: var(--sacred-saffron, #F37420);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    align-items: center;
    gap: 8px;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s, box-shadow 0.15s;
}

.hbm-book-btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.hbm-book-btn .hbm-btn-arrow {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    flex-shrink: 0;
}

.hbm-services-card {
    background: #fff;
    border-radius: 20px;
    margin: -24px 14px 0;
    padding: 18px 10px 14px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.11);
    position: relative;
    z-index: 10;
}



.hbm-services-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.hbm-svc-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    cursor: pointer;
    flex: 1;
    -webkit-tap-highlight-color: transparent;
}

.hbm-svc-btn:hover {
    text-decoration: none;
}

.hbm-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s;
}

.hbm-svc-btn:active .hbm-icon-wrap {
    transform: scale(0.90);
}

.hbm-icon-wrap img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}



.hbm-svc-lbl {
    font-size: 11px;
    font-weight: 600;
    color: #444;
    text-align: center;
    line-height: 1.2;
}

.hbm-svc-divider {
    width: 1px;
    height: 48px;
    background: #f0f0f0;
    align-self: center;
    flex-shrink: 0;
}

/* =====================================================
   HOW IT WORKS SECTION - MOBILE (ZIG-ZAG PATH FLOW)
   ===================================================== */

.how-it-works-section-mobile {
    padding: 60px 0;
    background: #fffcf8;
    position: relative;
    overflow: hidden;
}

.hiw-zigzag-container {
    position: relative;
    margin: 0 auto;
    height: 280px;

}

.hiw-svg-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hiw-zz-step {
    position: absolute;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

/* Position steps in zig-zag */
.hiw-zz-step.step-1 {
    top: 0;
    left: 10%;
}

.hiw-zz-step.step-2 {
    top: 25%;
    right: 10%;
}

.hiw-zz-step.step-3 {
    top: 50%;
    left: 10%;
}

.hiw-zz-step.step-4 {
    top: 75%;
    right: 10%;
}

.np-bg-peach {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.np-bg-green {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.np-bg-pink {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}

.np-bg-blue {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.np-bg-purple {
    background: linear-gradient(135deg, #ede7f6, #d1c4e9);
}

.hiw-zz-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #3e2723;
    /* Darker color for better contrast on light backgrounds */
    margin-bottom: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.hiw-zz-icon-box:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 10px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    filter: blur(4px);
}

.hiw-zz-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.hiw-zz-step:hover .hiw-zz-icon-box {
    transform: translateY(-5px) rotate(3deg);
}

/* Path moving ball animation */
.hiw-moving-ball {
    offset-path: path("M 20 10 C 80 10 80 35 80 35 S 20 35 20 60 S 80 60 80 85");
    animation: hiwMoveBall 4s infinite linear, hiwBallPulse 1s infinite alternate ease-in-out;
    filter: drop-shadow(0 0 4px rgba(243, 116, 32, 0.8));
}

@keyframes hiwMoveBall {
    0% {
        offset-distance: 0%;
    }

    100% {
        offset-distance: 100%;
    }
}

@keyframes hiwBallPulse {
    from {
        r: 2.5;
        opacity: 0.8;
    }

    to {
        r: 4;
        opacity: 1;
    }
}

@keyframes hiwDotPulse {

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

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Adjust for very small screens */
@media (max-width: 360px) {
    .hiw-zigzag-container {
        max-width: 280px;
    }

    .hiw-zz-icon-box {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .hiw-zz-title {
        font-size: 12px;
    }
}

/* Responsive tweaks for very small devices */
@media (max-width: 360px) {
    .hiw-flow-container-v2 {
        padding-left: 10px;
    }

    .hiw-line-path {
        left: 35px;
    }

    .hiw-node {
        width: 46px;
        height: 46px;
    }

    .hiw-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

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

/* Join as Pandit CTA Mobile */
.join-pandit-cta-mobile {
    padding: 20px 15px;
    margin-bottom: 20px;
}

.join-cta-card {
    background: #F37420;
    /* Brand Saffron */
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join-cta-illustration {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.join-cta-illustration img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.join-cta-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: "Poppins", sans-serif;
}

.join-cta-button {
    background: #ffffff;
    color: #F37420;
    padding: 14px 40px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none !important;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.join-cta-button:active {
    transform: scale(0.95);
}