/*
 * Page-specific styles for EServicesPuja/PanditRegister/register.blade.php
 * (the pandit self-registration landing page). Extracted from two
 * inline <style> blocks — the main page styles, and the searchable
 * country-select dropdown used lower on the page.
 */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    h1,
    h2,
    h3,
    h4 {
        /* font-family: "Noto Sans", sans-serif; */
        font-family: 'Poppins', sans-serif;
    }

    #state-city-container.show {
        /*display: flex;*/
        display: block;
        padding: 0;
        margin: 0;

    }

    .form-header {
        background-color: transparent;
        color: #000;
        padding: 1.2rem 1rem;
    }

    .form-body {
        padding: 30px;
    }

    .register-btn {
        width: 100%;

    }

    .pl-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff4eb, #ffffff, #fff8e8);
    padding: 80px 20px;
}

.pl-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pl-hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.pl-hero-content {
    flex: 1;
    min-width: 320px;
}

.pl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffe7d1;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.pl-hero-badge p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #8a4200;
}

.pl-hero-text-block h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #222222;
    margin: 0 0 20px 0;
}

.pl-hero-text-block h1 span {
    color: #f37420;
}

.pl-hero-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    margin: 0 0 30px 0;
}

.pl-hero-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.pl-hero-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.pl-hero-btn-primary {
   background: #ffffff;
    color: #f37420 !important;
    border: 3px solid #f37420;
}

.pl-hero-btn-primary:hover {
    background: #f37420;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 116, 32, .2);
}
.register-btn{
    text-decoration: none;
    transition: all 0.3s ease;
}
.register-btn:hover{
   background: #f3af42;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(243, 116, 32, .4);
}
.register-btn:active {
   background-color: #f3af42 !important;
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(243, 116, 32, .4);
}
.pl-hero-btn-secondary {
    background: #ffffff;
    color: #f37420 !important;
    border: 2px solid #f37420;
}

.pl-hero-btn-secondary:hover {
    border-color: #f37420;
}

.pl-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.pl-hero-stat-box span {
    margin: 0 0 6px 0;
    font-size: 32px;
    color: #f37420;
    font-weight: 700;
}

.pl-hero-stat-box p {
    margin: 0;
    font-size: 14px;
    color: #666666;
}

.pl-hero-image-side {
    flex: 1;
    min-width: 320px;
    position: relative;
}

.pl-hero-image-shape {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5a04a, #f2c14a);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.2;
    transform: rotate(6deg);
}

.pl-hero-image-wrap {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pl-hero-image-wrap img {
    width: 100%;
    display: block;
    height: auto;
}

.pl-hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    z-index: 1;
}

.pl-hero-bg-circle-one {
    width: 250px;
    height: 250px;
    background: #ff8c42;
    top: 40px;
    left: 20px;
}

.pl-hero-bg-circle-two {
    width: 300px;
    height: 300px;
    background: #ffb347;
    right: 20px;
    bottom: 40px;
}

@media (max-width: 991px) {
    .pl-hero-text-block h1 {
        font-size: 40px;
    }

    .pl-hero-grid {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .pl-hero-section {
        padding: 30px 15px;
    }

    .pl-hero-text-block h1 {
        font-size: 32px;
    }

    .pl-hero-text-block p {
        font-size: 16px;
    }

    .pl-hero-stats {
        gap: 12px;
    }

    .pl-hero-stat-box span {
        font-size: 26px;
    }

    .pl-hero-btn {
        width: 100%;
        text-align: center;
    }
}


.pe-section {
    
    /* background: linear-gradient(180deg, #fff3eb, #ffffff); */
    /* padding: 80px 20px; */
}

.pe-container {
    max-width: 1200px;
    margin: auto;
}

.pe-heading {
    text-align: center;
    margin-bottom: 50px;
}

.pe-heading h2 {
    font-size: 36px;
    /* color: #ff6b35; */
}

.pe-heading p {
    color: #666;
    max-width: 700px;
    margin: 0 auto !important;
}

/* Stats */
.pe-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.pe-card {
    flex: 1 1 calc(20% - 20px);
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #ffe0d2;
    transition: 0.3s;
}

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

.pe-icon {
    background: #fff1ea;
    color: #fff;
    width: 65px;
    height: 65px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: linear-gradient(to right, #f97316, #ea580c);
}
.pe-card h3 {
    color: #ff6b35;
}
.pe-card p{
    color: #000;
    font-size: 16px;
        margin-bottom: 0;
}
.pe-card span{
    color: rgba(0, 0, 0, .5);
    font-size: 14px;
}

/* Success */
.pe-success h3 {
    text-align: center;
    color: #ff6b35;
    margin-bottom: 40px;
}

.pe-success-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pe-success-card {
    flex: 1 1 calc(33.33% - 20px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.pe-success-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.pe-success-content {
    padding: 20px;
}
.pe-success-content span {
    font-size: 18px;
}

.pe-location {
    font-size: 14px;
    color: #777;
}

.pe-box {
    display: flex;
    justify-content: space-between;
    background: #fff3eb;
    padding: 10px;
    margin: 15px 0;
    border-radius: 8px;
}

.pe-desc {
    font-size: 14px;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .pe-card {
        flex: 1 1 calc(30% - 20px);
    }

    .pe-success-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .pe-card,
    .pe-success-card {
        flex: 1 1 100%;
    }
}

.hw-section, .pandit-registration-video-section, .rps-gallery-sec  {
    /* background: #f9f9f9; */
    background: linear-gradient(180deg, #fff3eb, #ffffff);
    padding: 80px 20px;
}
.reg_form_section{
    background: #f9f9f9;
    padding: 80px 20px;
}
.pe-success-section{
    background: linear-gradient(180deg, #fff3eb, #ffffff);
    padding: 80px 20px;
}

.hw-container {
    max-width: 1200px;
    margin: auto;
}

.hw-heading {
    text-align: center;
    margin-bottom: 60px;
}

.hw-heading h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 10px;
}

.hw-heading p {
    color: #666;
    font-size: 16px;
}

/* Grid */
.hw-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Card */
.hw-card {
    flex: 1 1 calc(25% - 20px);
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid #ffe0d2;
    transition: 0.3s;
}

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

/* Number badge */
.hw-number {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #ff6b35, #ff9a3c);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Icon */
.hw-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: #fff3eb;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.hw-icon svg{
    color: #ff8c3a;
}
/* Text */
.hw-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hw-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .hw-card {
        flex: 1 1 100%;
    }

    .hw-heading h2 {
        font-size: 28px;
    }
}
.cta-section {
    padding: 60px 20px;
}

.cta-box {
    /* max-width: 900px; */
    margin: auto;
    text-align: center;
    background: #f37420;
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.cta-title {
    font-size: 30px;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto 25px;
    color: #fff;
}

.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #f37420 !important;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: 3px solid #fff;
}

/* .cta-btn:hover {
    background: #fff3eb;
} */
.cta-btn:hover {
        background: transparent;
    color: #ffffff !important;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(243, 116, 32, .2);
    border: 3px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title {
        font-size: 24px;
    }

    .cta-text {
        font-size: 14px;
    }

    .cta-box {
        padding: 40px 20px;
    }
}



/* Gallery Section */
.rps-gallery-sec{
/* padding:0px 0; */
/* background:#ffffff; */
overflow:hidden;
}

.rps-gallery-wrap{
max-width:1200px;
margin:0 auto;
padding:0 15px;
}

.rps-gallery-head{
text-align:center;
margin-bottom:30px;
}

.rps-gallery-head h2{
font-size:32px;
line-height:1.2;
font-weight:700;
color:#1f1f1f;
margin:0 0 10px 0;
}

.rps-gallery-head p{
font-size:15px;
line-height:1.6;
color:#666666;
margin:0;
}

.rps-gallery-slider-area{
position:relative;
display:flex;
align-items:center;
gap:15px;
}

.rps-gallery-viewport{
overflow:hidden;
width:100%;
}

.rps-gallery-track{
display:flex;
transition:transform 0.5s ease;
will-change:transform;
}

.rps-gallery-item{
flex:0 0 calc(25% - 15px);
margin-right:20px;
border-radius:14px;
overflow:hidden;
background:#f8f8f8;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.rps-gallery-item img{
width:100%;
height:240px;
object-fit:cover;
display:block;
transition:transform 0.4s ease;
}

.rps-gallery-item:hover img{
transform:scale(1.06);
}

.rps-gallery-nav{
width:44px;
height:44px;
border:none;
border-radius:50%;
background:#f58220;
color:#ffffff;
font-size:22px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
flex-shrink:0;
box-shadow:0 6px 14px rgba(245,130,32,0.25);
transition:0.3s ease;
}

.rps-gallery-nav:hover{
transform:translateY(-2px);
}

.rps-gallery-btnbox{
text-align:center;
margin-top:28px;
}

.rps-gallery-btn{
display:inline-block;
padding:12px 28px;
background:#f58220;
color:#ffffff;
font-size:15px;
font-weight:600;
text-decoration:none;
border-radius:8px;
transition:0.3s ease;
transition: all 0.3s ease;
}

.rps-gallery-btn:hover{
background: #f3af42;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(243, 116, 32, .4);
}

@media screen and (max-width:991px){
.rps-gallery-item{
flex:0 0 calc(33.333% - 14px);
}
}

@media screen and (max-width:767px){
.rps-gallery-sec{
padding:45px 0;
}

.rps-gallery-head h2{
font-size:26px;
}

.rps-gallery-slider-area{
gap:10px;
}

.rps-gallery-item{
flex:0 0 calc(50% - 10px);
margin-right:15px;
}

.rps-gallery-item img{
height:200px;
}

.rps-gallery-nav{
width:38px;
height:38px;
font-size:18px;
}
}

@media screen and (max-width:480px){
.rps-gallery-item{
flex:0 0 100%;
margin-right:12px;
}

.rps-gallery-item img{
height:220px;
}
}

.rps-gallery-lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.88);
display:flex;
align-items:center;
justify-content:center;
padding:20px;
opacity:0;
visibility:hidden;
transition:0.3s ease;
z-index:99999;
}

.rps-gallery-lightbox.rps-gallery-lightbox-active{
opacity:1;
visibility:visible;
}

.rps-gallery-lightbox-image{
max-width:90%;
max-height:90%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.35);
}

.rps-gallery-lightbox-close{
position:absolute;
top:20px;
right:25px;
width:42px;
height:42px;
border:none;
border-radius:50%;
background:#ffffff;
color:#000000;
font-size:28px;
line-height:1;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
}

.rps-gallery-popup-img{
cursor:pointer;
}












    /* .input_group:focus {
        border: 0;
    } */

    .row>* {
        margin-top: 15px;
    }

    .input_group {
        font-weight: 400;
    }

    #state-city-container .col-md-12 {
        margin-top: 15px;
    }


    /* add neww css 8_11_25 */
    .form-title {
        background-color: var(--np-saffron);
        width: 100%;
        font-size: 22px;
        font-weight: 600;
        text-align: center;
        padding: 10px;
        /* padding-bottom: 20px; */
        color: #fff;
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .form_field input {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #ffd7a8;
        font-size: 15px;
        outline: none;
        border-bottom: 1px solid #ffd7a8!important;
    }

    .form_field input:focus {
        border-color: var(--np-saffron);
        border-bottm: 0 !important;
    }

    .form-wrapper {
        max-width: 800px;
    }

    .form-custom-select {
        position: relative;
        width: 100%;
    }

    .form-custom-select input {
        width: 100%;
        padding: 10px 35px 10px 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        cursor: pointer;
        font-size: 15px;
        background-color: #fff;
    }

    .form-custom-select .form-dropdown-icon {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        color: #555;
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    .custom-select-option:hover {
        background-color: #f37420 !important;
        color: #fff;
    }

    .select-trigger:focus,
    .search-input:focus {
        border: 1px solid #f37420 !important;
    }

    .register-btn {
        padding: 10px;
    }

    /* .form-wrapper {
    padding-bottom: 30px;
} */
    .appSection {
        padding: 0px;
    }

    .registration_heading p {
        width: 60%;
        margin: 0 auto;
    }

    .pujas-heading {
        font-size: 32px;
        font-weight: 600;
    }

    .mobile_images {
        display: none;
    }


    .joining_benifit_cards_items {
        border: 2px solid #0000001a;
        border-radius: 10px;
        padding: 17px;
        text-align: center;
        user-select: none;

    }

    .cards_icon {
        background-color: #ffedd5;;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 auto;
    }

    .cards_icon i {
        color: #f37420;
        font-size: 26px;
    }

    .joining_benifit_cards_items h3 {
        font-size: 20px;
        color: #000;
        font-weight: 600;
    }

    .joining_benifit_cards_items:hover {
        border: 2px solid #f37420;
        transition: 0.5s;
    }


    /*add css review cards*/
    .feedback-review-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 0 6.73px 1.43px #00000012;
        position: relative;
        height: 320px;
    }

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

    .feedback-review-card i {
        color: #f37420;
    }

    .feedback-review-text {
        font-size: 15px;
        color: #333;
        line-height: 1.6;
        margin-top: 12px;
        height: 130px;
    }

    .feedback-reviewer-info {
        display: flex;
        align-items: center;
        margin-top: 20px;
    }

    .feedback-reviewer-avatar {
        background: #f37420;
        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;
    }

    .google-badge {
        margin-left: 10px;
    }

    .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;
    }

    .register-now-cta {
        /* background-color: #7e15152b; */
            background: linear-gradient(135deg, #fff7ed, #ffffff);
    }

    .register_now_btn {
        background-color: #f37420;
        color: #fff;
        padding: 8px 15px;
        border-radius: 14px;
        border: 0;
        font-size: 17px;
            transition: all 0.3s ease;
    }
    .register_now_btn:hover{
        box-shadow: 0 0 10px #f37420, 0 0 30px #f37420;
            transform: translateY(-2px);
    }

    .footer-container {
        /*background-color: #7e1515 !important;*/
        margin-top: 0rem;
    }

    .register-now-cta h4 {
        font-size: 1.7rem;
        font-weight: 700;
    }

    .bx-shadow1 h2 {
        font-size: 26px;
    }

    .question-container {
        box-shadow: 0 5px 10px 0 rgb(0, 0, 0, .25);
        border-radius: 20px;
        margin: 20px 0;
    }

    .question {
        font-size: 16px;
        font-weight: 600;
        padding: 15px 80px 15px 20px;
        position: relative;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .question.active::after {
        transform: rotate(45deg);
    }

    .question::after {
        content: "\002B";
        font-size: 2.2rem;
        position: absolute;
        right: 20px;
        transition: 0.2s;
    }

    .answercont {
        max-height: 0;
        overflow: hidden;
        transition: 0.3s;
    }

    .answer {
        padding: 0 20px 20px;
        line-height: 1.5rem;
        font-weight: 400;
        font-size: 14px;
    }

    span.more_reviews {
        margin-top: 20px;
        display: inline-block;
        color: var(--np-saffron);
        font-weight: 600;
        cursor: pointer;
        transition: all 1s ease;
        position: relative;
    }

    span.more_reviews:hover {
        transform: translateY(-2px);
        color: #a71818;
    }

    /* Hidden initially */
    .more_reviews_items {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: scaleY(0.95);
        transition:
            max-height 0.6s cubic-bezier(0.23, 1, 0.32, 1),
            opacity 0.5s ease,
            transform 1s ease;
        display: flex;
        /*flex-direction: column;*/
        /*gap: 10px;*/
        /*padding: 0px 0px;*/
        padding-bottom: 10px;
    }
    .more_reviews_items {
    display: none;
}

.more_reviews_items.show {
    display: block;
}

    /* When visible */
    .more_reviews_items.show {
        max-height: 1000px;
        /* Enough for your content */
        opacity: 1;
        transform: scaleY(1);
    }

    /* Optional: subtle fade-in on each review item */
    .more_reviews_items.show .review_item {
        animation: fadeInUp 1s ease forwards;
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(15px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .mobile_images {
            display: block;
        }

        .decktop_images {
            display: none;
        }

        .form-body {
            padding: 15px;
        }

        .form-title {
            background-color: var(--np-saffron);
            font-size: 18px;
            padding: 10px;
            padding-bottom: 10px;
        }

        .registration_h1 {
            font-size: 24px;
        }

        .select-trigger {
            min-height: auto;
        }

        .form_field input {
            padding: 7px;
        }

        .custom-select-wrapper .select-trigger {
            padding: 7px;
        }

        .appSection {
            padding: 0 0 0px;
        }

        .registration_heading p {
            width: 100%;
            margin: 0 auto;
        }

        .registration_heading p span {
            display: block;
        }

        .pujas-heading {
            font-size: 26px;
            font-weight: 700;
        }

        .pujas-tagLine {
            font-size: 14px;
        }
    }

    /* register page css */

.np-docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.np-docs-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  transition: 0.3s ease;
}

.np-docs-card:hover {
  border-color: #f59e0b;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.np-docs-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #ffedd5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.np-docs-icon-box span{
        color: var(--sacred-saffron);
}

.np-docs-card h3 {
  font-size: 22px;
  line-height: 1.4;
  color: #1f2937;
  margin: 0 0 10px;
  font-weight: 600;
}

.np-docs-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 16px;
}

.np-docs-badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.np-docs-required {
  background: #fee2e2;
  color: #b91c1c;
}

.np-docs-optional {
  background: #f3f4f6;
  color: #4b5563;
}

.np-docs-guideline-wrap {
  max-width: 850px;
  margin: 50px auto 0;
}

.np-docs-guideline-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  padding: 30px;
}

.np-docs-guideline-box h4 {
  font-size: 24px;
  line-height: 1.4;
  color: #1f2937;
  margin: 0 0 18px;
  font-weight: 700;
}

.np-docs-guideline-box ul {
  margin: 0;
  padding-left: 20px;
}

.np-docs-guideline-box ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 10px;
}

.np-docs-guideline-box ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .np-docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .np-docs-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .np-docs-section {
    padding: 40px 15px;
  }

  .np-docs-grid {
    grid-template-columns: 1fr;
  }

  .np-docs-heading h2 {
    font-size: 26px;
  }

  .np-docs-heading p {
    font-size: 16px;
  }

  .np-docs-card {
    padding: 24px 18px;
  }

  .np-docs-guideline-box {
    padding: 22px 18px;
  }

  .np-docs-guideline-box h4 {
    font-size: 20px;
  }
}


/* reg video */
.pandit-registration-video-section {
    padding: 60px 15px;
    background-color: #fff;
    text-align: center;
}

.prvs-header {
    max-width: 800px;
    margin: 0 auto 30px;
}

.prvs-title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.prvs-tagline {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.prvs-video-wrapper {
    position: relative;
    width: 100%;
    /* max-width: 900px; */
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
}

.prvs-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Mobile */
@media (max-width: 767px) {
    .prvs-title {
        font-size: 24px;
    }

    .prvs-tagline {
        font-size: 14px;
    }
    .input-group.mobileNumber {
    flex-wrap: nowrap;
}
.mobileNumber input {
    margin: 0 !important;
}
}
/* reg video */
.np-benefit-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.np-benefit-card{
background:#ffffff;
border-radius:12px;
padding:20px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
transition:0.3s;
border:1px solid rgba(233,136,15,0.2);
}

.np-benefit-card:hover{
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transform:translateY(-4px);
}

.np-benefit-flex{
display:flex;
gap:15px;
align-items:flex-start;
}

.np-benefit-icon{
background:#fff3e6;
padding:12px;
border-radius:10px;
flex-shrink:0;
}

.np-benefit-icon i{
color:#e9880f;
font-size:20px;
}

.np-benefit-card h3{
font-size:18px;
color:#222;
margin-bottom:6px;
}

.np-benefit-card p{
font-size:14px;
color:#666;
line-height:1.5;
}

/* Tablet */
@media(max-width:992px){
.np-benefit-grid{
grid-template-columns:repeat(2,1fr);
}
}

/* Mobile */
@media(max-width:576px){
.np-benefit-grid{
grid-template-columns:1fr;
}
}

@media (max-width: 1199px) {
    /* .np-docs-grid {
    grid-template-columns: repeat(2, 1fr);
  } */
  .pe-card h3 {
    font-size: 22px;
}
.pe-container {
    max-width: 1150px;
    margin: auto;
}
.np-docs-card p {
    font-size: 12px;
}
.np-docs-card h3 {
    font-size: 15px;
    line-height: 1.4;
    color: #1f2937;
    margin: 0 0 10px;
    font-weight: 600;
} 
.pe-icon {
    width: 54px;
    height: 54px;
} 
.pe-stats {
    padding: 0px 25px;
} 
.feedback-review-text {
    height: 135px;
    font-size: 13px;
}
.feedback-review-card {
    height: 310px;
}
.pl-hero-text-block h1 {
    font-size: 36px;
}
.pe-heading h2 {
    font-size: 30px;
}
.feedback-reviewer-name {
    font-size: 12px;
}
.feedback-reviewer-meta {
    font-size: 11px;
}
.cta-box {
    padding: 30px 30px;
}
.hw-section, .benefits-section {
    padding: 40px 20px;
}
.reg_form_section {
    padding: 40px 20px;
}
.cta-section {
    padding: 20px 20px;
    padding-top: 50px;
}
}

.links-footer-icon{
        display: none;
}
</style>

<style>
    /* Custom searchable select styles */
    .custom-select-wrapper {
        position: relative;
        width: 100%;
        max-width: 100%;
        font-family: Arial, sans-serif;
        /* margin-bottom: 6px; */
    }

    .custom-select-wrapper .select-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        border: 1px solid #ffd7a8;
        padding: 10px 12px;
        border-radius: 6px;
        cursor: pointer;
        user-select: none;
    }

    .custom-select-wrapper .select-trigger.active {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .custom-select-wrapper .select-trigger .placeholder-idx {
        color: #000;
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        background-color: rgb(255 255 255);
        opacity: 1;
    }

    .custom-select-wrapper .select-trigger i.fa {
        margin-left: 12px;
        color: #666;
    }

    /* Dropdown */
    .custom-select-wrapper .select-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        z-index: 1100;
        display: none;
        max-height: 320px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .custom-select-wrapper .select-dropdown.open {
        display: block;
    }

    /* Search input */
    .custom-select-wrapper .select-dropdown .search-container {
        padding: 8px;
        border-bottom: 1px solid #f0f0f0;
    }

    .custom-select-wrapper .select-dropdown .search-input {
        width: 100%;
        padding: 8px 10px;
        border-radius: 6px;
        border: 1px solid #eee;
        outline: none;
    }

    /* Options */
    .custom-select-wrapper .options-container {
        max-height: 220px;
        overflow-y: auto;
        padding: 6px;
    }

    .custom-select-wrapper .custom-select-option {
        padding: 9px 10px;
        cursor: pointer;
        border-radius: 6px;
        font-size: 14px;
    }

    .custom-select-wrapper .custom-select-option:hover {
        background: #f7f7f7;
    }

    .custom-select-wrapper .custom-select-option.selected {
        background: #f0efef;
        color: #f37420;
        font-weight: 600;
    }

    .custom-select-wrapper .no-results {
        padding: 12px;
        color: #888;
        display: none;
        text-align: center;
    }

    .custom-select-wrapper .no-results.show {
        display: block;
    }

    /* Small helpers for responsive */
    @media (max-width: 576px) {
        .custom-select-wrapper .select-trigger {
            padding: 7px;
            font-size: 14px;
        }
    }
</style>


/* ===== Migrated from style.css (page-specific, previously duplicated) ===== */
.faq-question {
    background: #fff;
    padding: 15px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    border-radius: 20px
}

.faq-question .faq-toggle {
    position: absolute;
    right: 20px;
    font-weight: 700;
    font-size: 2rem;
    top: 0;
    transition: .2s;
    transform: rotate(0)
}

.faq-question h6 {
    margin-bottom: 0
}

.input_group:focus {
    box-shadow: none;
    border: 1px solid #ffd7a8 !important;
    border-top: 1px solid #ffd7a8 !important;
    border-bottom: 2px solid #ffd7a8 !important;
}
@media only screen and (max-width: 767px) {
.select-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        background: #fff;
        border-bottom: 2px solid #d8d8d8;
        border-radius: 8px;
        cursor: pointer;
        transition: .2s;
        min-height: 48px
    }

.select-trigger:hover {
        border-color: #cbd5e1
    }

.select-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border: 2px solid #e2e8f0;
        border-top: none;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 25px rgb(0 0 0 / .1);
        z-index: 1000;
        max-height: 300px;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .2s
    }

.search-container {
        border-bottom: 1px solid #e2e8f0
    }

.search-input {
        width: 100%;
        padding: 8px 12px;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        font-size: 14px;
        outline: 0;
        transition: border-color .2s
    }

.search-input:focus {
        border-color: var(--np-saffron)
    }

.options-container {
        max-height: 200px;
        overflow-y: auto
    }

.custom-select-option {
        padding: 12px 16px;
        cursor: pointer;
        transition: background-color .2s;
        border-bottom: 1px solid #f1f5f9
    }

.custom-select-option:hover {
        background-color: #f8fafc
    }

.no-results {
        padding: 16px;
        text-align: center;
        color: #64748b;
        font-size: 14px;
        display: none
    }

.options-container::-webkit-scrollbar {
        width: 6px
    }

.options-container::-webkit-scrollbar-track {
        background: #f1f5f9
    }

.options-container::-webkit-scrollbar-thumb {
        background: var(--np-saffron);
        border-radius: 3px
    }

.options-container::-webkit-scrollbar-thumb:hover {
        background: var(--np-saffron)
    }
}
@media (max-width: 576px) {
.input_group {
        font-size: 14px
    }
}
@media(max-width:992px) {
.np-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:576px) {
.np-benefit-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Migrated from the legacy e-puja.css ===== */
.search-container {
    position: relative
}

.search-container button {
    position: absolute;
    top: 0;
    right: -2px;
    border: 0;
    height: 100%;
    background: #f37420;
    padding: 0 12px;
    border-radius: 0 15px 15px 0
}

.search-container .fa-search {
    color: #fff!important
}

@media (min-width: 768px) and (max-width:991px) {
    .search-container {
        width:95%!important
    }
}

.reviews-wrapper .reviews-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 4) - 6px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 17px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overflow: hidden
}

.reviews-carousel::-webkit-scrollbar {
    display: none
}

.reviews-carousel.no-transition {
    scroll-behavior: auto
}

.reviews-carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto
}

.reviews-carousel.dragging .reviews-card {
    cursor: grab;
    user-select: none
}

.reviews-carousel :where(.reviews-card,.img) {
    display: flex;
    justify-content: start;
    align-items: center
}

.reviews-carousel .reviews-card {
    scroll-snap-align: start;
    list-style: none;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #b22829;
    height: 350px
}

.reviews-carousel .reviews-card .img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    margin: 0 auto
}

.reviews-carousel .reviews-card h2 {
    font-weight: 500;
    font-size: 1rem
}

.reviews-carousel .reviews-card span {
    color: #6a6d78;
    font-size: .8rem
}

@media screen and (max-width: 767px) {
    .reviews-wrapper .reviews-carousel {
        grid-auto-columns: calc((100% / 1) - 6px)
    }
}

@media only screen and (min-width: 768px) and (max-width:991px) {
    .reviews-wrapper .reviews-carousel {
        grid-auto-columns: calc((100% / 2) - 6px)
    }
}

@media only screen and (min-width: 1024px) and (max-width:1440px) {
    .reviews-wrapper .reviews-carousel {
        grid-auto-columns: calc((100% / 3) - 6px)
    }
}


/* ===== Migrated from astrology.css ===== */
@media (min-width:768px) and (max-width:991px) {
.search-container {
        width: 95% !important
    }
}
.astro-img-details,
.container {
    padding-right: 15px;
    padding-left: 15px
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px) !important
}

.form-control:focus {
    border-color: var(--np-saffron);
    box-shadow: none
}

span.badge.badge-danger.mb-3 i.fas.fa-times.mr-2 {
    margin-right: .5rem
}

.modal-body.astro-modal-body {
    height: 550px;
    width: 100%
}

.modal-body.astro-modal-body::-webkit-scrollbar {
    width: 0
}

.row.add_to_cart_item.active {
    padding-bottom: 20px
}
