/* ==========================================================================
   PVC Card Printing & Delivery Platform - Master Custom Stylesheet
   ========================================================================== */

:root {
    --pvc-primary: #0b3b60;
    --pvc-primary-dark: #07253d;
    --pvc-primary-light: #185a8f;
    --pvc-secondary: #3c8fff;
    --pvc-secondary-hover: #2196F3;
    --pvc-accent: #16a085;
    --pvc-success: #198754;
    --pvc-warning: #ffc107;
    --pvc-danger: #dc3545;
    --pvc-dark: #1e293b;
    --pvc-light: #f8fafc;
    --pvc-border: #e2e8f0;
    --pvc-font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Universal Link Reset - Remove All Underlines from <a> tags everywhere */
a,
a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none !important;
}

.pvc-nav-link,
.pvc-logo-brand,
.nav-link,
.btn,
.dropdown-item,
.pvc-category-card a,
.pvc-footer a {
    text-decoration: none !important;
}

body {
    font-family: var(--pvc-font);
    color: #334155;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--pvc-primary-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Navbar */
.pvc-navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(11, 59, 96, 0.08);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.pvc-logo-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pvc-primary) !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pvc-logo-brand span {
    color: var(--pvc-secondary);
}

.pvc-logo-brand .pvc-logo-img {
    max-height: 42px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.pvc-logo-brand:hover .pvc-logo-img {
    transform: scale(1.02);
}

.pvc-footer-brand .pvc-footer-logo-img {
    max-height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.pvc-nav-link {
    font-weight: 600;
    color: #475569 !important;
    padding: 0.55rem 1rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
}

.pvc-nav-link:hover {
    color: var(--pvc-primary) !important;
    background-color: #f1f5f9;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.pvc-nav-link.active {
    color: var(--pvc-primary) !important;
    background-color: #e2e8f0;
    font-weight: 700;
    text-decoration: none !important;
}

.pvc-btn-primary {
    background-color: var(--pvc-primary);
    border-color: var(--pvc-primary);
    color: #ffffff;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.pvc-btn-primary:hover {
    background-color: var(--pvc-primary-dark);
    border-color: var(--pvc-primary-dark);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 59, 96, 0.2);
}

.pvc-btn-secondary {
    background-color: var(--pvc-secondary);
    border: 1.5px solid var(--pvc-secondary);
    color: #ffffff !important;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.pvc-btn-secondary:hover {
    background-color: var(--pvc-secondary-hover);
    border-color: var(--pvc-secondary-hover);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(60, 143, 255, 0.3);
    text-decoration: none !important;
}

.pvc-btn-secondary.btn-sm {
    padding: 0.52rem 0.85rem;
    font-size: 0.86rem;
    line-height: 1.4;
    border-radius: 8px;
}

/* Card Catalog View Details Button */
.pvc-btn-details {
    background-color: #ffffff;
    border: 1.5px solid var(--pvc-primary);
    color: var(--pvc-primary) !important;
    font-weight: 600;
    font-size: 0.86rem;
    padding: 0.52rem 0.85rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(11, 59, 96, 0.08);
    line-height: 1.4;
    white-space: nowrap;
}

.pvc-btn-details:hover {
    background-color: var(--pvc-primary);
    border-color: var(--pvc-primary);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 59, 96, 0.2);
    text-decoration: none !important;
}

.pvc-btn-details:active {
    transform: translateY(0);
}

.pvc-btn-details i {
    color: var(--pvc-primary);
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

.pvc-btn-details:hover i {
    color: #ffffff;
}


/* Header Customer Login Button - Premium Modern Outline Style */
.pvc-btn-login {
    background-color: transparent;
    border: 1.5px solid var(--pvc-primary);
    color: var(--pvc-primary) !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.45rem 1.15rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    line-height: 1.4;
}

.pvc-btn-login:hover {
    background-color: var(--pvc-primary);
    border-color: var(--pvc-primary);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(11, 59, 96, 0.18);
    text-decoration: none !important;
}

.pvc-btn-login:active {
    transform: translateY(0);
}

.pvc-btn-login i {
    color: var(--pvc-primary);
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.pvc-btn-login:hover i {
    color: #ffffff;
    transform: scale(1.12);
}


/* Disclaimer Bar */
.pvc-disclaimer-bar {
    background-color: #fef3c7;
    border-bottom: 1px solid #fde68a;
    color: #92400e;
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
    text-align: center;
    font-weight: 500;
}

/* Hero Section with Card Demo Collage Background */
.pvc-hero {
    background: linear-gradient(135deg, rgb(0 0 0 / 43%) 0%, rgb(0 0 0 / 70%) 50%, rgba(7, 31, 51, 0.94) 100%),
                url('../images/hero-cards-banner.jpg') center center / cover no-repeat;
    color: #ffffff;
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);
}

.pvc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(230, 126, 34, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.pvc-hero h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.pvc-hero .lead {
    color: #e2e8f0;
    font-size: 1.2rem;
    font-weight: 400;
}

.pvc-hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

/* Hero Swiper Showcase */
.pvc-hero-swiper-wrap {
    position: relative;
    padding: 1rem 0.5rem;
}

.pvc-hero-swiper {
    width: 100%;
    max-width: 440px;
    padding: 0.5rem 0.5rem 2.8rem !important;
    margin: 0 auto;
}

.pvc-hero-slide-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #1e293b;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Demo Card Photo Wrapper */
.pvc-hero-card-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #0b1329;
    width: 100%;
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.pvc-hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(1.2);
    transition: transform 0.35s ease;
}

.pvc-hero-slide-card:hover .pvc-hero-card-img {
    transform: scale(1.25);
}

.pvc-hero-card-img-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 2;
}

.pvc-hero-card-img-overlay .badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.6rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pvc-hero-card-preview {
    height: 185px;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    overflow: hidden;
}

.pvc-hero-card-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    animation: pvcShimmer 4s infinite;
}

@keyframes pvcShimmer {
    0% { left: -100%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

.card-theme-ayushman {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #b45309 100%);
}
.card-theme-abha {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #075985 100%);
}
.card-theme-ration {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #047857 100%);
}
.card-theme-voter {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1d4ed8 100%);
}
.card-theme-pan {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 50%, #0891b2 100%);
}
.card-theme-dl {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 50%, #b91c1c 100%);
}
.card-theme-aadhaar {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
}
.card-theme-custom {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #6366f1 100%);
}

.pvc-hero-swiper .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
    width: 9px;
    height: 9px;
    transition: all 0.3s ease;
}

.pvc-hero-swiper .swiper-pagination-bullet-active {
    background: var(--pvc-secondary) !important;
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 6px !important;
}

.pvc-hero-swiper-button-prev,
.pvc-hero-swiper-button-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.pvc-hero-swiper-button-prev:hover,
.pvc-hero-swiper-button-next:hover {
    background: var(--pvc-secondary);
    color: #ffffff;
    border-color: var(--pvc-secondary);
    transform: translateY(-50%) scale(1.08);
}

.pvc-hero-swiper-button-prev {
    left: -18px;
}

.pvc-hero-swiper-button-next {
    right: -18px;
}

@media (max-width: 576px) {
    .pvc-hero-swiper-wrap {
        padding: 0.5rem 0;
    }
    .pvc-hero-swiper-button-prev {
        left: -8px;
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .pvc-hero-swiper-button-next {
        right: -8px;
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .pvc-hero-card-preview {
        height: 165px;
        padding: 0.8rem 1rem;
    }
}

/* Card Mockup Showcase */
.pvc-card-mockup {
    width: 320px;
    height: 200px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1.2rem;
    position: relative;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pvc-card-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* Card Category Grid */
.pvc-category-card {
    background: #ffffff;
    border: 1px solid var(--pvc-border);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pvc-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(11, 59, 96, 0.12);
    border-color: #cbd5e1;
}

.pvc-category-thumb-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #0b1329;
    aspect-ratio: 3 / 2;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pvc-category-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
    display: block;
}

.pvc-category-card:hover .pvc-category-thumb {
    transform: scale(1.04);
}

.pvc-category-thumb-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
    font-size: 0.68rem;
    padding: 0.25rem 0.5rem;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.pvc-category-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.pvc-badge-price {
    background-color: #ecfdf5;
    color: #065f46;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid #a7f3d0;
}

/* Step Timeline & Order Workflow */
.pvc-step-box {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--pvc-border);
    height: 100%;
}

.pvc-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--pvc-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

/* Features Grid */
.pvc-feature-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem;
    border-radius: 12px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}

.pvc-feature-icon {
    font-size: 1.8rem;
    color: var(--pvc-primary);
    flex-shrink: 0;
}

/* Checkout Multi-Step Container */
.pvc-checkout-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--pvc-border);
    padding: 2.5rem;
}

.pvc-summary-card {
    background: #f8fafc;
    border: 1px solid var(--pvc-border);
    border-radius: 14px;
    padding: 1.8rem;
    position: sticky;
    top: 100px;
}

/* Interactive Timeline */
.timeline-track {
    position: relative;
    padding-left: 2.5rem;
    margin-top: 2rem;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1rem;
    bottom: 0;
    width: 3px;
    background-color: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.timeline-item.active .timeline-icon {
    background-color: var(--pvc-primary);
    color: #ffffff;
}

.timeline-item.completed .timeline-icon {
    background-color: var(--pvc-success);
    color: #ffffff;
}

/* Modern Live Order Progress Step Strip */
.pvc-step-strip-wrapper {
    position: relative;
    padding: 1.5rem 0.5rem 1rem;
    margin: 1.5rem 0 2rem;
}

.pvc-step-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pvc-step-track-line {
    position: absolute;
    top: 24px;
    left: 8%;
    right: 8%;
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 999px;
    z-index: 1;
}

.pvc-step-track-fill {
    height: 100%;
    background: linear-gradient(90deg, #0b3b60 0%, #0d6efd 50%, #198754 100%);
    border-radius: 999px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pvc-step-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 20%;
}

.pvc-step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #cbd5e1;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    margin-bottom: 0.6rem;
}

.pvc-step-node.completed .pvc-step-circle {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
    border-color: #198754;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.35);
}

.pvc-step-node.active .pvc-step-circle {
    background: linear-gradient(135deg, #0b3b60 0%, #0d6efd 100%);
    border-color: #0b3b60;
    color: #ffffff;
    box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.2), 0 4px 14px rgba(11, 59, 96, 0.35);
    animation: pvcPulseStep 2.2s infinite;
}

@keyframes pvcPulseStep {
    0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4), 0 4px 14px rgba(11, 59, 96, 0.35); }
    70% { box-shadow: 0 0 0 10px rgba(13, 110, 253, 0), 0 4px 14px rgba(11, 59, 96, 0.35); }
    100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0), 0 4px 14px rgba(11, 59, 96, 0.35); }
}

.pvc-step-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.2rem;
    line-height: 1.25;
}

.pvc-step-node.active .pvc-step-label {
    color: #0b3b60;
    font-weight: 800;
}

.pvc-step-node.completed .pvc-step-label {
    color: #198754;
}

.pvc-step-desc {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.2;
}

.pvc-step-node.active .pvc-step-desc {
    color: #475569;
    font-weight: 500;
}

/* Mobile Step Strip Optimization */
@media (max-width: 767.98px) {
    .pvc-step-track {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }
    .pvc-step-track-line {
        top: 24px;
        bottom: 24px;
        left: 23px;
        right: auto;
        width: 5px;
        height: calc(100% - 48px);
    }
    .pvc-step-track-fill {
        width: 100% !important;
        height: var(--mobile-fill-height, 0%);
        transition: height 0.6s ease;
    }
    .pvc-step-node {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
        gap: 1rem;
    }
    .pvc-step-circle {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

/* Master Footer */
.pvc-footer {
    background: linear-gradient(180deg, #071f33 0%, #04121e 100%);
    border-top: 3px solid var(--pvc-secondary);
    color: #cbd5e1;
    padding: 4.5rem 0 2rem;
    font-size: 0.95rem;
    position: relative;
}

.pvc-footer h5 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    position: relative;
    padding-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.pvc-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background-color: var(--pvc-secondary);
    border-radius: 2px;
}

.pvc-footer p {
    color: #cbd5e1;
    line-height: 1.7;
}

.pvc-footer-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pvc-footer-brand span {
    color: var(--pvc-secondary);
}

.pvc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pvc-footer-links li a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
}

.pvc-footer-links li a i {
    font-size: 0.75rem;
    color: var(--pvc-secondary);
    transition: transform 0.2s ease, color 0.2s ease;
}

.pvc-footer-links li a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateX(4px);
}

.pvc-footer-links li a:hover i {
    transform: translateX(3px);
    color: #ff9800;
}

.pvc-footer-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    padding: 0.4rem 0.85rem;
    color: #f8fafc;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: background-color 0.2s ease;
}

.pvc-footer-pill:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* Legal Disclaimer Box in Footer */
.pvc-footer-disclaimer {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    color: #e2e8f0;
    font-size: 0.82rem;
    line-height: 1.6;
    margin-top: 1.4rem;
    backdrop-filter: blur(4px);
}

.pvc-footer-disclaimer strong {
    color: #f59e0b;
}

/* Footer Bottom Bar */
.pvc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 3.5rem;
    padding-top: 1.8rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.pvc-footer-bottom a {
    color: #f1f5f9 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.pvc-footer-bottom a:hover {
    color: var(--pvc-secondary) !important;
}

.pvc-footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.82rem;
    color: #e2e8f0;
}

/* Blog Card & Image Styling */
.pvc-blog-thumb-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #f1f5f9;
    display: block;
}

.pvc-blog-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.card:hover .pvc-blog-thumb {
    transform: scale(1.05);
}

.pvc-blog-detail-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(11, 59, 96, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: #f8fafc;
    margin-bottom: 2rem;
}

.pvc-blog-detail-img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

/* Homepage Blog Swiper & Reduced Image Styling */
.pvc-blog-swiper-wrap {
    position: relative;
    padding: 0 4px;
}

.pvc-blog-swiper {
    padding-bottom: 12px;
}

.pvc-blog-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.pvc-home-blog-thumb-wrap {
    position: relative;
    overflow: hidden;
    height: 155px; /* Compact reduced image height */
    background-color: #f1f5f9;
    display: block;
}

.pvc-home-blog-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.pvc-blog-swiper .card:hover .pvc-home-blog-thumb {
    transform: scale(1.06);
}

.pvc-blog-swiper-button-prev,
.pvc-blog-swiper-button-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 1px solid var(--pvc-border);
    box-shadow: 0 4px 12px rgba(11, 59, 96, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pvc-primary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.pvc-blog-swiper-button-prev {
    left: -20px;
}

.pvc-blog-swiper-button-next {
    right: -20px;
}

.pvc-blog-swiper-button-prev:hover,
.pvc-blog-swiper-button-next:hover {
    background: var(--pvc-primary);
    color: #ffffff;
    border-color: var(--pvc-primary);
    box-shadow: 0 6px 16px rgba(11, 59, 96, 0.22);
}

.pvc-blog-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.pvc-blog-swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: var(--pvc-primary);
}

/* ==========================================================================
   eRationCard Exact UI Theme for Card Type Details Pages
   Modeled after https://erationcard.in/
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.er-page-wrapper {
    background-color: #f5f7fa !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    overflow-x: hidden;
    color: #212121;
}

.er-page-wrapper .maintain-area-margin {
    margin: 0 300px;
}

/* Banner */
.er-page-wrapper div.banner {
    position: relative;
    height: 510px;
    width: 100%;
    background-color: #e8e8e8;
    overflow: hidden;
}

.er-page-wrapper div.banner img.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
    object-fit: cover;
}

.er-page-wrapper div.banner div.child {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    position: relative;
}

.er-page-wrapper div.banner div.tab {
    flex: 1;
}

.er-page-wrapper div.banner p.welcome {
    font-size: 60px;
    line-height: 65px;
    margin: 0 0 30px 0 !important;
    font-weight: 500;
    color: #fff;
}

.er-page-wrapper div.banner p.welcome strong {
    font-weight: 700;
    color: #fff;
}

.er-page-wrapper div.banner p.welcome-info {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 30px;
}

.er-page-wrapper div.banner button.order-pvc-card,
.er-page-wrapper div.banner a.order-pvc-card {
    padding: 10px 22px;
    border-radius: 11px;
    border: none;
    background: #fff;
    color: #00bbf2 !important;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.er-page-wrapper div.banner button.order-pvc-card:hover,
.er-page-wrapper div.banner a.order-pvc-card:hover {
    background-color: #002970;
    color: #fff !important;
}

/* Partner Login / Order Showcase Area */
.er-page-wrapper div.partner-login-area {
    padding: 20px;
    height: auto;
    width: 300px;
    background-color: #fff;
    float: right;
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.er-page-wrapper div.partner-login-area img {
    width: 100%;
}

.er-page-wrapper div.partner-login-area button,
.er-page-wrapper div.partner-login-area a.partner-btn {
    width: 100%;
    border: 0;
    padding: 11px 0;
    border-radius: 13px;
    margin: 0;
    font-weight: 600;
    color: #fff !important;
    background-color: #002970;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none !important;
    font-size: 15px;
}

.er-page-wrapper div.partner-login-area button:hover,
.er-page-wrapper div.partner-login-area a.partner-btn:hover {
    background-color: #00baf2;
}

/* Typography & Titles */
.er-page-wrapper .title {
    font-size: 31px;
    font-weight: 600;
    color: #212121;
}

.er-page-wrapper .title.mini {
    font-size: 21px;
    font-weight: 500;
    color: #212121;
}

.er-page-wrapper .info {
    font-size: 15.5px;
    color: #555;
    line-height: 1.6;
}

/* 3 Easy Steps About Area */
.er-page-wrapper div.about-area {
    background-color: #fff;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    border-radius: 11px;
    align-items: stretch;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.er-page-wrapper div.about-area div.image {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #fafcff;
}

.er-page-wrapper div.about-area div.image img {
    display: block;
    height: auto;
    object-fit: contain;
    width: 100%;
    max-height: 320px;
    margin: 0 auto;
}

.er-page-wrapper div.about-area div.texts {
    flex: 1.2;
    height: 100%;
    padding: 45px 50px;
}

/* Quick Links Grid */
.er-page-wrapper div.quick-links {
    margin-top: 50px;
    cursor: pointer;
}

.er-page-wrapper div.quick-links div.child {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.er-page-wrapper div.quick-links div.tab {
    display: flex;
    flex-direction: row;
    flex: 1;
}

.er-page-wrapper div.quick-link {
    flex: 1;
    background-color: #fff;
    margin-left: 20px;
    border-radius: 11px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    padding: 20px 18px;
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
    display: block;
    color: inherit;
}

.er-page-wrapper div.quick-link:hover {
    background-color: #00baf2 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.er-page-wrapper div.quick-link:hover p.quick-link-title,
.er-page-wrapper div.quick-link:hover p.quick-link-text {
    color: #fff !important;
}

.er-page-wrapper div.quick-links img {
    height: 42px;
    width: auto;
}

.er-page-wrapper p.quick-link-title {
    font-weight: 600;
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 6px;
    color: #212121;
    transition: color 0.3s;
}

.er-page-wrapper p.quick-link-text {
    margin-top: 0;
    font-size: 14.5px;
    color: #555;
    line-height: 1.45;
    transition: color 0.3s;
    margin-bottom: 0;
}

/* FAQ Area */
.er-page-wrapper div.faq-area {
    background-color: #fff;
    padding: 50px 0;
    margin-top: 50px;
}

.er-page-wrapper div.faq-area div.accordion-item {
    border-radius: 11px !important;
    border-color: transparent !important;
    background-color: #f5f7fa;
    margin-bottom: 20px;
    border: none !important;
    overflow: hidden;
}

.er-page-wrapper div.faq-area button.accordion-button {
    box-shadow: none !important;
    width: 100%;
    text-align: left;
    border: none !important;
    background-color: transparent !important;
    padding: 16px 22px;
    font-weight: 600;
    font-size: 19px;
    color: #212121;
}

.er-page-wrapper div.faq-area div.accordion-body {
    padding: 0 22px 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.er-page-wrapper div.faq-area a {
    text-decoration: none !important;
    color: #212121;
    font-weight: 500;
    background-color: #f5f7fa;
    padding: 9px 24px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.er-page-wrapper div.faq-area a:hover {
    color: #fff !important;
    background-color: #212121;
}

/* Stats Area (Cyan Bar) */
.er-page-wrapper div.stats-area {
    background-color: #00BDF2;
    padding: 40px 0;
    margin-top: 50px;
}

.er-page-wrapper div.stats-area p.title {
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
    font-size: 31px;
    font-weight: 600;
}

.er-page-wrapper div.stats-area div.child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.er-page-wrapper div.stats-area div.stat {
    height: 100%;
    flex: 1;
    justify-content: center;
    text-align: center;
}

.er-page-wrapper div.stats-area div.stat img {
    display: block;
    margin: 0 auto;
    height: 50px;
}

.er-page-wrapper div.stats-area div.stat p.title {
    margin-top: 15px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.er-page-wrapper div.stats-area div.stat p.keyword {
    margin-top: 0;
    color: #f4f4f4;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

/* Media Queries matching erationcard.in */
@media only screen and (max-width: 1600px) {
    .er-page-wrapper .maintain-area-margin {
      margin: 0 100px;
    }
}

@media only screen and (max-width: 1460px) {
    .er-page-wrapper .maintain-area-margin {
      margin: 0 60px;
    }
    .er-page-wrapper div.banner {
        height: 470px;
    }
    .er-page-wrapper div.banner p.welcome {
        font-size: 50px;
        line-height: 55px;
        margin-bottom: 20px !important;
    }
    .er-page-wrapper div.banner p.welcome-info {
        font-size: 16px;
    }
    .er-page-wrapper div.partner-login-area {
        height: auto;
        width: 280px;
    }
}

@media only screen and (max-width: 1260px) {
    .er-page-wrapper div.banner {
        height: 450px;
    }
    .er-page-wrapper div.banner p.welcome {
        font-size: 40px;
        line-height: 45px;
    }
    .er-page-wrapper div.partner-login-area button,
    .er-page-wrapper div.partner-login-area a.partner-btn {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1030px) {
    .er-page-wrapper div.banner {
        height: auto;
        padding: 40px 0;
    }
    .er-page-wrapper div.banner div.child {
        flex-direction: column;
        height: auto;
    }
    .er-page-wrapper div.partner-login-area {
        height: auto;
        width: 100%;
        max-width: 320px;
        float: none;
        margin-top: 25px;
    }
    .er-page-wrapper div.partner-login-area button,
    .er-page-wrapper div.partner-login-area a.partner-btn {
        padding: 8px 0;
    }
    .er-page-wrapper div.banner p.welcome {
        font-size: 32px;
        line-height: 38px;
    }
    .er-page-wrapper .maintain-area-margin {
      margin: 0 30px;
    }
    .er-page-wrapper div.quick-links div.child {
        display: block;
    }
    .er-page-wrapper div.quick-links div.second {
        margin-top: 20px;
    }
    .er-page-wrapper div.quick-links div.second div.quick-link[data-type='first'] {
        margin-left: 0;
    }
    .er-page-wrapper .title {
        font-size: 25px;
    }
    .er-page-wrapper .title.mini,
    .er-page-wrapper div.faq-area h2 button {
        font-size: 18px !important;
    }
    .er-page-wrapper div.about-area p.info,
    .er-page-wrapper div.faq-area div.accordion-body {
        font-size: 15px;
    }
    .er-page-wrapper div.about-area {
        flex-direction: column;
    }
    .er-page-wrapper div.about-area div.texts {
        padding: 30px;
        padding-left: 20px !important;
    }
    .er-page-wrapper div.about-area div.image {
        margin: 20px auto !important;
    }
    .er-page-wrapper div.faq-area div.child {
        margin: 0 30px !important;
    }
}

@media only screen and (max-width: 800px) {
    .er-page-wrapper .maintain-area-margin {
      margin: 0 15px;
    }
    .er-page-wrapper div.quick-links div.tab {
        flex-direction: column;
        gap: 15px;
    }
    .er-page-wrapper div.quick-link {
        margin-left: 0 !important;
    }
    .er-page-wrapper div.stats-area div.child {
        flex-direction: column;
        gap: 25px;
    }
    .er-page-wrapper div.faq-area div.child {
      margin: 0 15px !important;
    }
    .er-page-wrapper .title {
        font-size: 22px;
    }
}

/* ==========================================================================
   Multi-Card Upload & Dynamic Order Checkout Styles
   ========================================================================== */
.card-entry {
    border: 1px solid #d9e6f2 !important;
    border-left: 4px solid var(--pvc-primary) !important;
    background-color: #ffffff !important;
    border-radius: 10px !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-entry:hover {
    border-color: #b0cde8 !important;
    border-left-color: var(--pvc-primary) !important;
    box-shadow: 0 4px 14px rgba(11, 59, 96, 0.08) !important;
}

.card-entry .card-number-label {
    font-weight: 700;
}

.card-entry .file-feedback .badge {
    font-size: 0.78rem;
    font-weight: 500;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-remove-card {
    font-size: 0.8rem !important;
    padding: 0.25rem 0.65rem !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.btn-remove-card:hover {
    background-color: #dc3545 !important;
    color: #ffffff !important;
    border-color: #dc3545 !important;
}

#btn_add_card {
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

#btn_add_card:hover {
    background-color: var(--pvc-primary) !important;
    color: #ffffff !important;
    border-color: var(--pvc-primary) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 59, 96, 0.15) !important;
}
