/* ========================================
   99Pandit Homepage Desktop Styles
   ======================================== */

/* ========================================
   CSS Variables
   ======================================== */

/* Spiritual Theme Variables */
: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;
}

/* Hinduism-Themed Color Variables */
:root {
    --brand-red: #7e1515;
    --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;
}

/* ========================================
   Star Rating Styles
   ======================================== */

.star-rating {
    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: #DAA520;
}

.stars-outer::before {
    content: "\f005 \f005 \f005 \f005 \f005";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #DAA520;
}

.stars-inner::before {
    content: "\f005 \f005 \f005 \f005 \f005";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* ========================================
   Feedback Review Cards
   ======================================== */

.feedback-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
    position: relative;
    height: 350px;
    transition: all 0.3s ease;
}

.feedback-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
}

.quotation-mark {
    font-size: 40px;
    color: #DAA520;
    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: flex;
    align-items: center;
    margin-top: 20px;
}

.feedback-reviewer-avatar {
    background: linear-gradient(135deg, #DAA520, #7C3AED);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    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: #DAA520;
    font-size: 16px;
}

.google-badge {
    margin-left: 10px;
}

.feedback-review-card i {
    color: #DAA520;
}

.feedback-swiper-pagination span.swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    background-color: #D4C5E8;
}

.feedback-swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #DAA520, #7C3AED);
    height: 14px;
    width: 14px;
}

/* ========================================
   Spiritual Hero Section
   ======================================== */

.spiritual-hero-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.spiritual-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.spiritual-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo img {
    filter: drop-shadow(0 4px 12px rgba(218, 165, 32, 0.2));
}

.trust-badge {
    display: inline-block;
}

.badge-text {
    background: linear-gradient(135deg, #059669, #10B981);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.hero-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--spiritual-text-dark);
    margin: 25px auto 35px;
    max-width: 800px;
    background: linear-gradient(135deg, var(--spiritual-text-dark) 0%, var(--spiritual-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Search Container */
.hero-search-container {
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-search-container.sticky-search-bottom {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 600px;
    margin: 0;
    animation: slideUpSearch 0.3s ease-out forwards;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-search-container.sticky-search-bottom.hidden-at-footer {
    animation: none;
    transform: translate(-50%, 150%) !important;
    opacity: 0;
    pointer-events: none;
}




.hero-search-container.sticky-search-bottom .hero-search-wrapper {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid rgb(233 136 15 / 30%);
    background: white;}
    
.hero-search-container.sticky-search-bottom .search-dropdown {
    top: auto;
    bottom: calc(100% + 15px);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
}

@keyframes slideUpSearch {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.hero-search-wrapper {
    position: relative;
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
    padding: 8px 25px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-search-wrapper:focus-within {
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
    transform: translateY(-2px);
}

.search-icon {
    color: var(--spiritual-primary);
    font-size: 22px;
    margin-right: 15px;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 12px 0;
    color: var(--spiritual-text-dark);
    font-family: 'Noto Sans', sans-serif;
}

.hero-search-input::placeholder {
    color: var(--spiritual-text-muted);
    opacity: 0.7;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-dropdown.active {
    display: block;
}

.search-dropdown-item {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--spiritual-text-dark);
}

.search-dropdown-item:hover {
    background: linear-gradient(90deg, rgba(218, 165, 32, 0.08) 0%, rgba(124, 58, 237, 0.05) 100%);
    padding-left: 25px;
}

.search-dropdown-item img.puja-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.search-dropdown-item i {
    color: var(--spiritual-primary);
    font-size: 16px;
    flex-shrink: 0;
}

.search-dropdown-item:last-child {
    border-bottom: none;
}

/* Popular Puja Badges */
.popular-puja-badges {
    margin: 35px 0 50px;
}

.badges-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--spiritual-text-muted);
    margin-bottom: 15px;
    display: block;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.puja-badge {
    background: white;
    color: var(--spiritual-text-dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--spiritual-primary);
}

.puja-badge:hover {
    background: var(--spiritual-primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.3);
    border-color: var(--spiritual-primary-dark);
}

.badge-icon {
    font-size: 14px;
    color: var(--spiritual-primary);
    transition: color 0.3s ease;
}

.puja-badge:hover .badge-icon {
    color: white;
}

/* Achievement Stats */
.hero-achievements {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.achievement-block {
    background: white;
    padding: 30px 40px;
    border-radius: 16px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid var(--spiritual-primary);
}

.achievement-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: var(--spiritual-primary);
}

.achievement-block:hover .achievement-number,
.achievement-block:hover .achievement-label {
    color: white;
}

.achievement-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--spiritual-primary);
    transition: color 0.3s ease;
}

.achievement-label {
    font-size: 15px;
    color: var(--spiritual-text-dark);
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

/* ========================================
   Recommended Puja Section
   ======================================== */

.recommended-pujas-section {
    background: #FFFFFF;
    padding: 50px 0;
}

.recommended-pujas-section .pujas-heading {
    color: var(--sacred-saffron);
    margin-bottom: 10px;
}

.recommended-pujas-section .pujas-tagLine {
    color: var(--text-muted);
    font-size: 18px;
}

/* Category Tabs - Minimalistic Header Style */
.puja-category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* Reduced gap */
    flex-wrap: wrap;
    margin: 30px auto;
    background: transparent;
    padding: 0;
}

.category-tab {
    background: var(--spiritual-bg-light);
    /* Light background for inactive */
    border: 1px solid rgba(218, 165, 32, 0.2);
    /* Subtle border */
    border-radius: 50px;
    /* Fully rounded pills */
    padding: 12px 25px;
    /* Compact padding */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    /* Allow flexible width */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Minimal shadow */
    gap: 0;
}

.category-tab:hover {
    background: var(--spiritual-primary);
    /* Hover effect */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.2);
    border-color: var(--spiritual-primary);
}

.category-tab.active {
    background: var(--sacred-saffron);
    /* Active background */
    color: var(--sacred-white);
    border-color: var(--sacred-saffron);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.category-tab span {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.category-tab:hover span,
.category-tab.active span {
    color: var(--sacred-white);
}

/* Puja Services Grid */
.puja-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Puja Service Card - Clean Design */
.puja-service-card {
    background: var(--sacred-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
        margin: 10px auto;
}

.puja-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.puja-card-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.puja-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.puja-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.puja-service-card:hover .puja-card-image img {
    transform: scale(1.08);
}

.puja-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--sacred-saffron);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sacred-white);
    z-index: 1;
}

.puja-card-content {
    padding: 20px;
}

.puja-card-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.puja-card-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.puja-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.puja-rating i {
    color: var(--sacred-gold);
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 5px;
}

.puja-conducted {
    font-size: 13px;
    color: var(--text-muted);
}

.puja-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.puja-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--sacred-green);
}

/* Book Button - Saffron for warmth and positive interaction */
.book-puja-btn {
    background: var(--sacred-saffron);
    color: var(--sacred-white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-puja-btn:hover {
    background: var(--sacred-saffron-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 116, 32, 0.3);
}

/* Load More Button - Saffron theme */
.load-more-btn {
    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, 0.2);
}

.load-more-btn::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover::after {
    transform: translateX(5px);
}



/* ========================================
   Responsive Design
   ======================================== */

@media only screen and (max-width: 768px) {
    .enquire_book_pandit {
        display: none !important;
    }

    .mobile-footer-cta {
        display: none !important;
    }

    /* Hero Section Mobile */
    .spiritual-hero-section {
        padding: 40px 0 50px;
    }

    .hero-title {
        font-size: 28px;
        margin: 20px auto 25px;
    }

    .hero-search-input {
        font-size: 16px;
    }

    .badges-container {
        gap: 8px;
    }

    .puja-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .hero-achievements {
        gap: 20px;
        margin-top: 30px;
    }

    .achievement-block {
        padding: 25px 30px;
        min-width: 150px;
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .achievement-number {
        font-size: 32px;
    }

    .achievement-label {
        font-size: 13px;
    }

    /* Category Tabs Mobile */
    .puja-category-tabs {
        gap: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 5px;
        margin: 20px 0;
        -webkit-overflow-scrolling: touch;
    }

    .puja-category-tabs::-webkit-scrollbar {
        height: 0;
    }

    .category-tab {
        min-width: auto;
        padding: 10px 20px;
        white-space: nowrap;
    }

    .category-tab span {
        font-size: 14px;
    }

    .puja-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .recommended-pujas-section .pujas-heading {
        font-size: 32px;
    }

    .recommended-pujas-section .pujas-tagLine {
        font-size: 16px;
    }
}

/* ========================================
   Homepage Sections CSS
   ======================================== */

/* Popular Pujas Sections */
.popular-pujas {
    /* background-color: #fff8ef; */
    padding: 25px 0 20px;
}

.mukti-karma-pujas,
.supcoming-pujas {
    /* background-color: #fffeea; */
}

.col_pujas_cards {
    display: inline-block;
    flex-shrink: 0;
}

.popular-pujas-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.popular-pujas-card:hover {
    box-shadow: none !important;
    cursor: pointer;
}

.popular-pujas-card-img {
    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;
}

.popular-puja-tag p {
    font-size: 12px !important;
}

.pujashareIcon {
    position: absolute;
    top: 22px;
    right: 20px;
}

.pujas-heading {
    font-family: Noto Sans;
    font-size: 40px;
    font-weight: 700;
    line-height: 52.8px;
    color: #544f4d;
}

.pujaName {
    font-family: Noto Sans;
    font-size: 16px;
    font-weight: 700;
    line-height: 25.2px;
    text-align: left;
}

.totalPuja {
    font-size: 14px !important;
    line-height: 19.6px;
    text-align: left;
    color: #646464;
    font-weight: 400;
    font-family: Noto Sans;
}

.pujas-tagLine {
    font-size: 16px;
    line-height: 22.4px;
    color: #7f7b7a;
    font-weight: 400;
    font-family: Noto Sans;
}

.seeAllBtn {
    color: #000;
    border: 1px solid #000;
    font-weight: 700;
    padding: 3px 5px 3px 15px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.pujas_cards {
    display: flex;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    white-space: nowrap;
}

.pujas_cards::-webkit-scrollbar {
    height: 0;
}

.card {
    background-color: transparent;
    border: none;
}

.card-img-top {
    border-radius: 10px;
}

/* How It Works Section */
.how-it-works-content {
    background: #f1f1d9;
    padding: 25px 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;
}

.how-it-work-card-body {
    cursor: pointer;
    justify-content: center;
    display: flex;
    position: relative;
    transition: transform .8s;
}

.how-it-work-card-body img {
    transition: transform .8s;
}

.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;
}

.how-it-work-line img {
    width: 100%;
}

/* Customer Feedback Section */
.customerFeedback {
    background-color: #fff;
    padding: 25px 0;
}

.feedback-cards {
    border-radius: 10px;
    padding: 15px 40px;
    height: 350px;
    background: #fff;
    box-shadow: 0 0 6.73px 1.43px #00000012;
    border: 1px solid #e7eaec;
}

.feedback-cards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feedback-cards-header img {
    width: auto !important;
}

.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;
}

/* Recent Post Section */
.recentPost {
    padding: 25px 0;
}

.recentPost-cards {
    background: #fff;
    box-shadow: 0 0 6.73px 1.43px #00000012;
    border: 1px solid #e7eaec;
    border-radius: 10px;
    padding: 30px;
}

.recentPost-cards-body img {
    width: 100%;
}

.blog_thumbnail_img {
    border-radius: 15px;
}

.festival-name {
    background-color: #F37420;
    padding: 4px 25px;
    border-radius: 26px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 15px auto 0;
    width: max-content;
    line-height: 25.2px;
    font-family: Noto Sans;
}

.recentPost-cards-footer a {
    font-size: 18px;
    font-weight: 700;
    line-height: 26.4px;
    text-decoration: none;
    color: #000;
    font-family: Noto Sans;
    text-align: left;
}

.recentPost-websitelink a,
.recentPost-websitelink span {
    font-family: Noto Sans;
    font-weight: 700;
    color: #7f7b7a;
    text-align: left;
    font-size: 20px;
}

.recentPost-websitelink a {
    line-height: 30px;
}

.recentPost-websitelink span {
    line-height: 25.2px;
}

.post-tittle {
    height: 7em;
    padding-right: 50px;
    text-overflow: ellipsis;
    white-space: unset;
    overflow: hidden;
    box-sizing: border-box;
}

/* App Section */
.appSection {
    padding: 0 0 25px;
}

.cta-new-panditt {
    padding-top: 30px;
}

/* Owl Carousel Buttons */
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: flex;
}

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;
}

.owl-theme .owl-nav [class*=owl-] {
    border-radius: 20px !important;
    box-shadow: 0 4.58px 13.73px 3.43px #00000026;
}

/* Include Tags */
.include-tags ul li {
    font-size: 14px !important;
    color: #544f4d;
    text-align: left;
    font-weight: 400;
    line-height: 22.4px;
    font-family: Noto Sans;
}

/* ========================================
   View Details Button
   ======================================== */

.view-details-btn {
    background: transparent;
    color: var(--spiritual-primary);
    border: 1px solid var(--spiritual-primary);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-details-btn:hover {
    background: var(--spiritual-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.15);
}

/* ========================================
   Puja Details Modal Redesign
   ======================================== */

/* Desktop Override for EventdetailsModal */
@media (min-width: 769px) {
    .EventdetailsModals.bottom-slide-up .modal-dialog {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        margin: 1.75rem auto !important;
        width: auto !important;
        max-width: 800px !important;
        animation: none !important;
        transform: none !important;
        height: auto !important;
    }

    .EventdetailsModals.bottom-slide-up .modal-content {
        height: auto !important;
        max-height: 85vh;
        border-radius: 20px !important;
    }

    .EventdetailsModals.bottom-slide-up.fade .modal-dialog {
        transition: transform .3s ease-out;
        transform: translate(0, -50px) !important;
    }

    .EventdetailsModals.bottom-slide-up.show .modal-dialog {
        transform: none !important;
    }
}

.EventdetailsModals .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.EventdetailsModals .modal-header {
    border-bottom: none;
    background: var(--spiritual-bg-light);
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end;
}

.EventdetailsModals .btn-close {
    background: transparent;
    background-image: none;
    opacity: 1;
    transition: transform 0.3s ease;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark) !important;
    font-size: 24px;
}

.EventdetailsModals .btn-close:hover {
    transform: rotate(90deg);
}

.puja-details-modal-body {
    padding: 0 30px 40px;
}

.puja-name-img img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.whatsappShares {
    background: #25D366;
    color: white;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsappShares:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.Eventtitles {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 15px;
    font-size: 28px;
}

#Eventcontent {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 10px;
}

.see_more_detiles {
    color: var(--spiritual-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.see_more_detiles:hover {
    color: var(--spiritual-primary-dark);
}

.include-tags {
    background: var(--spiritual-bg-light);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--spiritual-primary);
}

.include-tags p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.our-promise {
    margin-top: 25px;
}

.our-promise span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.our-promise p {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--text-muted);
}

.details-book-btn {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.details-btn,
.book-pandits-btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    flex: 1;
}

.details-btn {
    background: white;
    color: var(--spiritual-primary);
    border: 2px solid var(--spiritual-primary);
}

.details-btn:hover {
    background: var(--spiritual-bg-light);
}

.book-pandits-btn {
    background: var(--sacred-saffron);
    color: white;
    box-shadow: 0 4px 15px rgba(243, 116, 32, 0.3);
}

.book-pandits-btn:hover {
    background: var(--sacred-saffron-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .puja-details-modal-body {
        padding: 0 20px 30px;
    }

    .Eventtitles {
        font-size: 24px;
        margin-top: 15px;
    }
}

/* ========================================
   Review Block (Replaces WhatsApp Share)
   ======================================== */

.puja-short-review {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: linear-gradient(to right bottom, #fff, #fdfbf7);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--spiritual-primary);
    padding: 2px;
    background: white;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.review-stars {
    font-size: 12px;
    color: var(--sacred-gold);
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.review-text {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
    position: relative;
    padding-left: 10px;
    border-left: 2px solid var(--spiritual-primary-dark);
}

/* ========================================
   Puja Rituals List Formatting
   ======================================== */

#Eventservice ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

#Eventservice ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    word-break: break-word;

}

#Eventservice ul li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

@media (max-width: 768px) {
    #Eventservice ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   EventdetailsModal Styling
   ======================================== */

/* ===== Modal Container ===== */
.puja-details-modal-content {
    border-radius: 18px;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===== Header ===== */
.detiles_modals_header {
    border-bottom: none;
    padding: 15px 20px;
}

.detiles_modals img {
    width: 18px;
    height: 18px;
}

/* ===== Body Spacing ===== */
.puja-details-modal-body {
    padding: 30px;
    max-height: 80vh;
    overflow: hidden;
    /* Changed from auto to hidden */
}

/* Make left column sticky */
.puja-details-modal-body .row>.col-lg-4 {
    position: sticky;
    top: 0;
    align-self: flex-start;
    max-height: 80vh;
    overflow-y: auto;
}

/* Make right column scrollable */
.puja-details-modal-body .row>.col-lg-8 {
    max-height: 75vh;
    overflow-y: auto;
    padding-right: 10px;
    padding-bottom: 30px;
}

/* Custom scrollbar for right column */
.puja-details-modal-body .row>.col-lg-8::-webkit-scrollbar {
    width: 6px;
}

.puja-details-modal-body .row>.col-lg-8::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.puja-details-modal-body .row>.col-lg-8::-webkit-scrollbar-thumb {
    background: #ff6b00;
    border-radius: 10px;
}

.puja-details-modal-body .row>.col-lg-8::-webkit-scrollbar-thumb:hover {
    background: #e55a00;
}

/* ===== Left Product Section ===== */
.puja-name-img {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.puja-name-img img {
    border-radius: 14px;
    object-fit: cover;
}

/* Puja Title */
.Eventtitles {
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

/* Rating */
.puja-name-img span {
    font-size: 14px;
    color: #777;
}

/* Share Button */
.whatsappShares {
    width: 100%;
    padding: 10px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.whatsappShares:hover {
    background: #1ebc59;
}

/* Visit Page Link */
.see_more_detiles {
    font-size: 14px;
    font-weight: 500;
    color: #ff6b00;
    text-decoration: none;
    cursor: pointer;
}

.see_more_detiles:hover {
    text-decoration: underline;
}

/* ===== Buttons ===== */
.details-book-btn {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-btn {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ff6b00;
    background: transparent;
    color: #ff6b00;
    font-weight: 500;
    transition: 0.3s ease;
}

.details-btn:hover {
    background: #ff6b00;
    color: #fff;
}

.book-pandits-btn {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #ff6b00, #ff8c42);
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.book-pandits-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===== Reviews Section ===== */
.puja-name-img+.mt-5 {
    background: #fafafa;
    padding: 20px;
    border-radius: 16px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.puja-name-img+.mt-5 h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.puja-name-img+.mt-5 p {
    font-size: 14px;
    color: #555;
}

.puja-name-img+.mt-5 small {
    color: #999;
}

/* ===== Right Section ===== */
.puja-name-details {
    padding: 10px 20px;
}

.puja-name-details p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Ritual Section */
.include-tags {
    background: #fffaf5;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #ffe3cf;
}

.include-tags span {
   font-weight: 600;
    margin-bottom: 5px;
    font-size: 20px;
    display: block;
}

/* Ritual Badges - Display as inline badges */
.ritual-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 20px;
    width: 100%;
}

.ritual-badges span,
.ritual-badges .ritual-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid #ff6b00;
    color: #ff6b00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.2s ease;
}

.ritual-badges span:hover,
.ritual-badges .ritual-badge:hover {
    background: #ff6b00;
    color: #fff;
}

/* Handle UL/LI from JavaScript */
.ritual-badges ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ritual-badges ul li {
    display: inline-block;
    background: #fff;
    border: 1px solid #ff6b00;
    color: #ff6b00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.2s ease;
}

.ritual-badges ul li:hover {
    background: #ff6b00;
    color: #fff;
}

/* Devotee Reviews on Right Side */
.devotee-reviews-right {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 14px;
}

.devotee-reviews-right span {
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
        font-size: 20px;
}

/* Modal Review Container for Auto-Rotation */
.modal-review-container {
    position: relative;
    min-height: 120px;
}

.modal-review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.modal-review-card.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

/* ===== Our Promise as Badges ===== */
.our-promise-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.promise-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #28a745;
    color: #28a745;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.promise-badge img {
    width: 18px;
    height: 18px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .puja-details-modal-body {
        padding: 20px;
    }

    .puja-name-details {
        padding: 0;
        margin-top: 25px;
    }

    .puja-name-img {
        margin-bottom: 20px;
    }

    .details-book-btn {
        flex-direction: column;
    }
}

/* ========================================
   Popular Cities Grid Layout (New Design)
   ======================================== */

.popular-cities-grid {
    display: grid;
    /* Grid for small image blocks, auto-filling with min-width constraint */
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.city-grid-item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    /* Square blocks */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.city-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.city-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.city-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: scale(1.1);
    /* Crop 10px border */
}

.city-grid-item:hover .city-image-container img {
    transform: scale(1.2);
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    /* Full overlay for better text contrast if needed, or gradient */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.city-name {
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .popular-cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        /* Smaller on mobile to fit more */
        gap: 10px;
    }

    .city-name {
        font-size: 12px;
        /* Smaller text for smaller blocks */
    }
}

/* View All Cities Button */
.view-all-cities-btn {
    display: inline-flex;
    align-items: center;
    background: var(--sacred-saffron);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 116, 32, 0.3);
}

.view-all-cities-btn:hover {
    background: var(--sacred-saffron-light);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(243, 116, 32, 0.4);
}

/* ========================================
   How It Works - Animated Flow
   ======================================== */

.how-it-works-section {
    background-color: #fff;
    /* Clean background */
    position: relative;
    padding: 40px 0;
}

.how-it-works-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 20px 0;
}

/* Connection Line Background */
.connection-line-container {
    position: absolute;
    top: 50px;
    /* Align with icon center approx */
    left: 10%;
    width: 80%;
    height: 4px;
    z-index: 0;
}

.connection-line {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
}

/* Animated Fill Line */
.connection-line-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--sacred-saffron), transparent);
    background-size: 50% 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    animation: flowLine 3s linear infinite;
    border-radius: 4px;
}

/* Moving Circle */
.connection-line-circle {
    width: 12px;
    height: 12px;
    background: var(--sacred-saffron);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--sacred-saffron);
    animation: moveCircle 10s linear infinite;
    z-index: 2;
}

@keyframes flowLine {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes moveCircle {
    0% {
        left: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Process Step */
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

/* Icon Wrapper */
.step-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #f5f5f5;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon-wrapper {
    border-color: var(--sacred-saffron);
    box-shadow: 0 8px 25px rgba(243, 116, 32, 0.25);
    transform: scale(1.1);
}

.step-icon i {
    font-size: 40px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.process-step:hover .step-icon i {
    color: var(--sacred-saffron);
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--sacred-saffron);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #fff;
}

/* Text Content */
.step-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

/* Responsive Flow (Vertical on Mobile) */
@media (max-width: 768px) {
    .how-it-works-flow {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .connection-line-container {
        width: 4px;
        height: 80%;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
    }

    .connection-line-fill {
        background: linear-gradient(180deg, transparent, var(--sacred-saffron), transparent);
        background-size: 100% 50%;
        animation: flowLineVertical 3s linear infinite;
    }

    .connection-line-circle {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        animation: moveCircleVertical 3s linear infinite;
    }

    @keyframes flowLineVertical {
        0% {
            background-position: 0 -100%;
        }

        100% {
            background-position: 0 200%;
        }
    }

    @keyframes moveCircleVertical {
        0% {
            top: 0;
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            top: 100%;
            opacity: 0;
        }
    }

    .process-step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        padding: 10px;
        background: #fff;
        /* To cover the line behind if needed */
        border-radius: 10px;
    }

    .step-icon-wrapper {
        margin: 0 20px 0 0;
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .step-icon i {
        font-size: 28px;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .step-desc {
        margin: 0;
        max-width: 100%;
    }
}

/* Sync Step Pulse with Flow Circle (6s duration) */
@keyframes stepPulse {

    0%,
    15% {
        border-color: var(--sacred-saffron);
        box-shadow: 0 8px 25px rgba(243, 116, 32, 0.25);
        transform: scale(1.1);
    }

    25%,
    100% {
        border-color: #f5f5f5;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: scale(1);
    }
}

@keyframes iconPulse {

    0%,
    15% {
        color: var(--sacred-saffron);
    }

    25%,
    100% {
        color: var(--text-muted);
    }
}

/* Delays calculated for 10s duration linearly distributed (0s, 3.3s, 6.6s, 9.8s) */
/* Step 1 (2nd child) */
.process-step:nth-child(2) .step-icon-wrapper {
    animation: stepPulse 10s infinite 0s;
}

.process-step:nth-child(2) .step-icon i {
    animation: iconPulse 10s infinite 0s;
}

/* Step 2 (3rd child) */
.process-step:nth-child(3) .step-icon-wrapper {
    animation: stepPulse 10s infinite 3.3s;
}

.process-step:nth-child(3) .step-icon i {
    animation: iconPulse 10s infinite 3.3s;
}

/* Step 3 (4th child) */
.process-step:nth-child(4) .step-icon-wrapper {
    animation: stepPulse 10s infinite 6.6s;
}

.process-step:nth-child(4) .step-icon i {
    animation: iconPulse 10s infinite 6.6s;
}

/* Step 4 (5th child) */
.process-step:nth-child(5) .step-icon-wrapper {
    animation: stepPulse 10s infinite 9.8s;
}

.process-step:nth-child(5) .step-icon i {
    animation: iconPulse 10s infinite 9.8s;
}

/* ========================================
   Customer Feedback - Minimal Grid
   ======================================== */

.feedback-minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px;
}

.feedback-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.feedback-card-minimal {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.feedback-card-minimal:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--sacred-saffron-light);
}

/* Avatar Column */
.feedback-avatar-col {
    flex-shrink: 0;
}

.feedback-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.feedback-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--sacred-saffron);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

/* Content Column */
.feedback-content-col {
    flex: 1;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.feedback-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.feedback-stars {
    color: #f7c948;
    /* Traditional Star Yellow/Gold */
    font-size: 11px;
    letter-spacing: 1px;
}

.feedback-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .feedback-minimal-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
    }

    .feedback-card-minimal {
        padding: 12px;
    }
}

/* ========================================
   Review Modal & Read More
   ======================================== */

.read-more-review-btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--spiritual-primary);
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.read-more-review-btn:hover {
    color: var(--spiritual-primary-dark);
}

.view-all-reviews-btn {
    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;
}

.view-all-reviews-btn:hover {
    background: var(--sacred-saffron);
    color: var(--sacred-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 116, 32, 0.2);
}

/* Modal Styling */
.review-modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.review-modal-header {
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    padding: 15px 25px;
}

.review-modal-body {
    padding: 30px;
    background: #fafafa;
}

.review-modal-user-col {
    border-right: 1px solid #eaeaea;
    padding-right: 30px;
}

.review-modal-avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--sacred-saffron);
    padding: 3px;
    background: #fff;
}

.review-modal-initials {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--sacred-saffron);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(243, 116, 32, 0.2);
}

.review-modal-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 18px;
}

.review-modal-content-container {
    padding-left: 10px;
    position: relative;
}

.quote-icon-modal {
    font-size: 24px;
    color: var(--spiritual-primary);
    opacity: 0.3;
}

.review-full-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .review-modal-user-col {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
        padding-right: 15px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}


.feedback-card-minimal {

    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);


    backface-visibility: hidden;
    will-change: transform, opacity;
}


.feedback-card-minimal.flipping {
    transform: rotateY(90deg);
    opacity: 0;

}


.feedback-card-minimal.flipped {
    animation: flipIn 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes flipIn {
    0% {
        transform: rotateY(-90deg);
        opacity: 0;
    }

    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

/* Added per user request */
.puja_cards_btns {
    width: 60%;
    margin-top: 10px;
    font-size: 14px !important;
    background: var(--sacred-saffron);
    color: var(--sacred-white);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.puja_cards_btns:hover {
    background: var(--sacred-saffron-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 116, 32, 0.3);
}



/*add css 10_3_26*/
.modal-title {
    font-size: 24px;
}
