/* css for service page desktop */
/* Hero styles → css/desktop/components/hero.css (np_d_hero component) */

/* ══════════════════════════════════════════════
   LAYOUT CONTAINERS (non-hero)
   ══════════════════════════════════════════════ */

.panditcityContainer2 {
    padding-right: 1rem;
    padding-left: 1rem;
}


/* ══════════════════════════════════════════════
   SECTION TAG / HEADING
   ══════════════════════════════════════════════ */

p.section_tag_p {
    width: auto;
    margin: 0 auto;
}

.popular-puja-h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--np-text-dark);
}


/* ══════════════════════════════════════════════
   JOINING BENEFIT CARDS
   ══════════════════════════════════════════════ */

.joining_benifit_cards_items {
    border: 1px solid rgb(233 136 15 / 30%);
    border-radius: 10px;
    padding: 13px;
    text-align: center;
    user-select: none;
    background-color: #fff;
}

.joining_benifit_cards_items:hover {
    border: 2px solid var(--np-saffron);
    transition: 0.5s;
}

.joining_benifit_cards_items span {
    font-size: 18px;
    color: var(--np-saffron);
    font-weight: 600;
}

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

.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 span {
    color: var(--np-saffron);
    font-size: 32px !important;
    font-weight: 300 !important;
}


/* ══════════════════════════════════════════════
   REGISTRATION BUTTONS (legacy — now replaced by np-btn)
   ══════════════════════════════════════════════ */

.register_now_btn {
    background: var(--np-grad-green);
    color: #fff !important;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(77, 148, 35, .3);
    transition: 0.3s;
    display: flex;
    align-items: center;
    width: max-content;
}

.register_now_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(77, 148, 35, .4);
    color: #fff;
}

.panditRegistrations_btn.mt-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.register_now_btn2 {
    background-color: transparent;
    color: var(--np-text-dark);
    padding: 8px 15px;
    border-radius: 14px;
    border: 2px solid var(--np-text-dark);
    font-size: 17px;
    display: block;
    width: max-content;
    margin: 0 auto;
}

.register_now_btn2:hover {
    color: var(--np-text-dark);
}

.cta-texts span {
    display: block;
}


/* ══════════════════════════════════════════════
   BTN-TILTED (legacy — now replaced by np-btn)
   ══════════════════════════════════════════════ */

.btn-tilted {
    border: none;
    background: var(--np-saffron);
    color: #fff !important;
    padding: 10px 8px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px !important;
}


/* ══════════════════════════════════════════════
   SECTION BACKGROUNDS
   ══════════════════════════════════════════════ */

.orange-section-bg {
    background: #fbf9fa;
}

.register-now-cta {
    background: linear-gradient(to bottom right, #fff7ed, #ffffff, #fff7ed);
}




/* ══════════════════════════════════════════════
   QUALITY SECTION
   ══════════════════════════════════════════════ */

.usecase {
    display: block;
}

.quality-section {
    margin-top: 64px;
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--np-saffron);
}

.quality-note {
    display: block;
    align-items: center;
    justify-content: space-between;
}

.quality-note p {
    font-size: 14px !important;
}

.quality-title {
    font-size: 24px;
    color: var(--np-text-dark);
    text-align: center;
    margin-bottom: 24px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: center;
}

.quality-card {
    padding: 10px;
}

.quality-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.quality-heading {
    color: var(--np-text-dark);
    font-weight: 500;
    margin-bottom: 4px;
}

.quality-text {
    font-size: 14px;
    color: var(--np-text-mid);
}


/* ══════════════════════════════════════════════
   RITUAL LIST
   ══════════════════════════════════════════════ */

.ritual-list {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 15px;
}

.ritual-list li {
    position: relative;
    margin-bottom: 10px;
    text-decoration: none;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* ══════════════════════════════════════════════
   INFO ROW
   ══════════════════════════════════════════════ */

.info {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 24px;
}

.info span {
    display: flex;
    align-items: center;
    gap: 7px;
}


/* ══════════════════════════════════════════════
   IMAGE BOX
   ══════════════════════════════════════════════ */

.image-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.image-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}


/* ══════════════════════════════════════════════
   USECASE GRID
   ══════════════════════════════════════════════ */

.usecase .usecase-grid {
    margin-bottom: 30px;
}

.usecase .usecase-grid:last-child {
    margin-bottom: 0;
}

.usecase-grid-content {
    padding-bottom: 30px;
}

/* 2-column layout with alternating reverse */
.usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Reverse layout: swap image and text order */
.usecase-grid.reverse {
    direction: rtl;
}

.usecase-grid.reverse > * {
    direction: ltr;
}

/* Text sizing */
.usecase-grid-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 600;
}

.usecase-grid-description {
    font-size: 18px;
    color: var(--np-text-mid);
    margin-bottom: 24px;
    line-height: 1.6;
}


/* ══════════════════════════════════════════════
   SERVICES REVIEW CARDS (legacy — used by old Swiper)
   ══════════════════════════════════════════════ */

.services-review-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    transition: box-shadow 0.3s ease;
}

.services-review-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.services-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.services-stars {
    color: #facc15;
    font-size: 18px;
    letter-spacing: 2px;
}

.services-verified {
    background: #ecfdf5;
    color: #16a34a;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.services-verified span {
    font-size: 18px;
}

.services-review-text {
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    height: auto;
}

.services-review-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.services-review-name {
    font-weight: bold;
    color: var(--np-text-dark);
    margin-bottom: 4px;
}

.services-review-meta {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* ══════════════════════════════════════════════
   COMPARISON TABLE
   ══════════════════════════════════════════════ */

.service-table-card {
    border: 1px solid #f0f0f0;
    padding: 0;
    border-radius: 10px;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 0.6fr 1.2fr 1.2fr;
    padding: 16px;
}

.table-header {
    background: #f3f4f6;
    font-weight: bold;
    border-bottom: 1px solid #e5e7eb;
}

.table-row {
    border-bottom: 1px solid #f0f0f0;
}

.table-row.last {
    border-bottom: none;
}

.center    { text-align: center; }
.muted     { color: #6b7280; }
.success   { color: #16a34a; font-weight: 500; }
.highlight { color: var(--np-saffron); }
.italic    { font-style: italic; }

.center.success svg,
.booking-benefits ul li svg {
    fill: #fff;
}

.cta {
    text-align: center;
    margin-top: 32px;
}


/* ══════════════════════════════════════════════
   MEDIA / FEATURED IN
   ══════════════════════════════════════════════ */

.media-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.media-name {
    font-size: 22px;
    font-family: 'Noto Sans', sans-serif;
    color: #9ca3af;
    transition: 0.3s ease;
    cursor: default;
}

.media-name:hover {
    color: #ff7a18;
    transform: scale(1.05);
}


/* ══════════════════════════════════════════════
   VEDIC REFERENCE BOX
   ══════════════════════════════════════════════ */

.vedic-ref-box {
    background: var(--np-saffron)2b;
    border-left: 5px solid var(--np-saffron);
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.vedic-ref-inner {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.vedic-ref-icon {
    font-size: 24px;
    color: var(--np-saffron);
    line-height: 1;
}

.vedic-ref-content {
    flex: 1;
}

.vedic-ref-text {
    font-size: 16px;
    color: var(--np-text-dark);
    margin-bottom: 8px;
    line-height: 1.6;
}

.vedic-ref-text strong {
    font-weight: 700;
}

.vedic-ref-text em {
    font-style: italic;
}

.vedic-ref-source {
    font-size: 13px;
    color: #6b7280;
}


/* ══════════════════════════════════════════════
   ABOUT GUIDE BOX
   ══════════════════════════════════════════════ */

.about-guide-box {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    margin: auto;
}

.about-guide-title {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--np-text-dark);
}

.about-guide-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-guide-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--np-text-mid);
    margin-bottom: 20px;
}

.about-guide-review {
    flex: 1;
}

.about-guide-date {
    padding-left: 16px;
    border-left: 1px solid #d1d5db;
}

.about-guide-sources {
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: var(--np-text-mid);
    line-height: 1.6;
}


/* ══════════════════════════════════════════════
   SERVICE CTA TEXTS
   ══════════════════════════════════════════════ */

.service-cta-texts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.service-cta-texts span {
    display: flex;
    align-items: center;
    font-size: 10px;
}




/* ══════════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════════ */

.vd-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-size: 15px;
}

.vd-breadcrumb-item + .vd-breadcrumb-item::before {
    content: "»";
    padding: 0 6px;
    color: #777;
}

.vd-breadcrumb-item a {
    text-decoration: none;
    color: var(--np-saffron);
    font-size: 16px;
}

.vd-breadcrumb-item {
    font-size: 16px;
}

span.breadcrumb_last {
    color: var(--np-saffron);
    font-size: 12px;
    font-weight: 600;
}


/* ══════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════ */

.faq-section {
    background: white;
}

/* ── Page Layout ──────────────────────── */
.footer-container {
    background-color: var(--np-saffron) !important;
    margin-top: 0;
}

/* ── Typography ──────────────────────── */
body {
    font-family: var(--np-font);
}

h1, h2, h3, h4, h5, h6, p {
    font-family: var(--np-font);
}