/* ===================================================
   DOWNLOAD PORTAL CANVAS CONFIGURATIONS
=================================================== */
.download-page-wrapper {
    background-color: #f8fafc;
    padding-top: 95px;         /* ANTI OVERLAP BLOCKER */
    min-height: calc(100vh - 85px);
    font-family: 'Inter', sans-serif !important;
}

.section-padding {
    padding: 50px 24px;
}

/* Base Headings Typography Overhaul */
.download-main-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
}

.download-sub-desc {
    font-size: 15.5px;
    color: #475569; /* Sharp readable font grayscale */
    max-width: 650px;
    line-height: 1.6;
}

.bg-soft-red-pill {
    background-color: #fff1f2;
    color: #e11d48;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

/* ===================================================
   QUICK DOWNLOAD MASTER ALERT PANEL
=================================================== */
.quick-directory-alert {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-left: 5px solid #0ea5e9;
    border-radius: 14px;
    padding: 22px 30px;
    max-width: 950px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.01);
}

.quick-badge {
    font-size: 10.5px;
    font-weight: 700;
    color: #0ea5e9;
    letter-spacing: 1px;
    display: block;
}

.quick-url-text {
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

.quick-url-text code {
    background-color: #f1f5f9;
    color: #0284c7;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.quick-link-btn {
    background-color: #0ea5e9;
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.15);
    transition: background 0.2s;
}

.quick-link-btn:hover { background-color: #0284c7; }

/* ===================================================
   SOFTWARE INDIVIDUAL STORAGE DOWNLOAD CARDS
=================================================== */
.soft-download-card {
    background-color: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 35px 24px 30px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SMART LAB 2.0 ELEVATED PREMIUM CARD HIGHLIGHT STYLING */
.best-selling-highlight-card {
    border: 2px solid #ea580c !important; /* Premium Orange Glowing Border */
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.08) !important;
    background: linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}

.best-seller-badge-tag {
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.25);
    z-index: 10;
}

.soft-icon-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Palette variants mapping icons */
.col-blue { background-color: #e0f2fe; color: #0284c7; }
.col-teal { background-color: #ccfbf1; color: #0f766e; }
.col-green { background-color: #dcfce7; color: #16a34a; }
.col-red { background-color: #ffe4e6; color: #e11d48; }
.col-orange { background-color: #ffedd5; color: #ea580c; }
.col-purple { background-color: #f3e8ff; color: #9333ea; }
.col-dark { background-color: #f1f5f9; color: #334155; }
.col-pink { background-color: #fce7f3; color: #db2777; }

.soft-meta-tag {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.soft-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 3px;
    margin-bottom: 10px;
}

.soft-card-desc {
    font-size: 13.5px;
    color: #475569; /* Balanced font readability spectrum */
    line-height: 1.6;
    margin-bottom: 0;
}

.soft-action-area { margin-top: 25px; }

/* Vyapar Style Action Button Layer */
.soft-download-btn {
    background-color: #e11d48;
    color: #ffffff !important;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.1);
    transition: all 0.2s ease;
}

/* Card Hover States Interaction engine rules */
.soft-download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
}
.soft-download-card:not(.best-selling-highlight-card):hover {
    border-color: #e11d48;
}
.best-selling-highlight-card:hover {
    box-shadow: 0 18px 40px rgba(234, 88, 12, 0.14) !important;
}

.soft-download-card:hover .soft-download-btn {
    background-color: #be123c;
    box-shadow: 0 6px 18px rgba(190, 18, 60, 0.25);
}

/* ===================================================
   SINGLE DYNAMIC CENTRAL WHATSAPP GATEWAY PANEL
=================================================== */
.central-demo-cta-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.font-heading { font-family: 'Outfit', sans-serif !important; }
.small-desc { font-size: 14.5px; }

.central-whatsapp-demo-btn {
    background-color: #25d366; /* Vibrant WhatsApp Green representation */
    color: #ffffff !important;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px; /* Pill layout shape mirroring requested model reference snippet */
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.central-whatsapp-demo-btn:hover {
    background-color: #128c7e; /* Premium dark emerald green shadow anchor toggle tone */
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

@media (max-width: 992px) {
    .download-page-wrapper { padding-top: 110px; }
    .download-main-title { font-size: 30px; }
    .central-demo-cta-box { padding: 30px 20px; }
    .central-whatsapp-demo-btn { width: 100%; justify-content: center; }
}