/* Base & Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: #f4f6fb; color: #333; overflow-x: hidden; padding-top: 65px; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 15px 25px; background-color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.logo h1 { font-size: 22px; color: #1e40af; font-weight: 700; margin: 0; }
.tagline { font-size: 13px; color: #f59e0b; margin-left: 45px; font-weight: 600; margin-top: -5px; }
.lang-toggle { display: flex; border: 1px solid #1e40af; border-radius: 20px; overflow: hidden; }
.btn-lang { padding: 6px 15px; border: none; background: white; color: #1e40af; cursor: pointer; font-weight: 500; font-size: 13px; transition: 0.3s; }
.btn-lang.active { background: #1e40af; color: white; }
.tagline1 { font-size: 13px; color: #f59e0b; margin-left: 75px; font-weight: 600; margin-top: -5px; }

/* Hero Section */
.hero { background: linear-gradient(to right, #0047ff, #002db3); color: white; padding: 30px 25px 90px; text-align: left; border-radius: 0 0 30px 30px; position: relative; }
.hero-text { max-width: 600px; margin: 0 auto; }
.hero-text h2 { font-size: 34px; margin-bottom: 10px; font-weight: 700; }
.hero-text p { font-size: 16px; opacity: 0.9; }
.hero-text strong { color: #fcd34d; }
.hero-image { text-align: center; }
.hero-image img { max-width: 100%; height: auto; margin-top: 20px; }
/* Action Grid */
.action-grid { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 0 20px; max-width: 900px; margin: -50px auto 30px; position: relative; z-index: 10; }
@media(min-width: 768px) { .action-grid { grid-template-columns: 1fr 1fr; } }
.card { padding: 25px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); position: relative; cursor: pointer; transition: transform 0.2s ease; }
.card:hover { transform: translateY(-5px); }

.card-green { background-color: #f0fdf4; border: 1px solid #dcfce7; }
.card-blue { background-color: #eff6ff; border: 1px solid #dbeafe; }
.card-orange { background-color: #fff7ed; border: 1px solid #ffedd5; }
.card-light-green { background-color: #f0fdf4; border: 1px solid #dcfce7; }
.card-icon { font-size: 40px; margin-bottom: 15px; }
.card h3 { font-size: 18px; color: #1e293b; margin-bottom: 5px; }
.card p { font-size: 13px; color: #64748b; }
.badge { position: absolute; top: 15px; right: 15px; padding: 4px 12px; font-size: 11px; font-weight: 600; border-radius: 20px; }
.badge-popular { background: #dcfce7; color: #16a34a; }
.badge-earn { background: #ffedd5; color: #ea580c; }
.badge-alert { background: #dcfce7; color: #16a34a; }
.arrow-btn { position: absolute; bottom: 20px; right: 20px; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: white; font-size: 16px; }
.bg-green { background: #22c55e; }
.bg-blue { background: #3b82f6; }
.bg-orange { background: #f97316; }

/* 3-COLUMN DASHBOARD GRID SECTION (FIXED) */
.dashboard-grid-section-fixed { background: #f8f9fa; padding: 40px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.dashboard-grid-fixed { display: grid; grid-template-columns: 1fr; gap: 25px; }
@media(min-width: 1024px) { 
    .dashboard-grid-fixed { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.grid-col-fixed { background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); display: flex; flex-direction: column; height: 100%; }
.col-heading { font-size: 18px; color: #0d47a1; margin-bottom: 8px; font-weight: bold; text-align: center; }
.col-subheading { font-size: 12px; color: #666; margin-bottom: 25px; text-align: center; }

/* Left Col: Candidate Story */
.story-card-fixed { background: #fdfdfd; padding: 15px; border-radius: 8px; text-align: left; margin-bottom: 20px; border: 1px solid #eee; border-left: 5px solid #0d47a1; flex-grow: 1; display: flex; flex-direction: column; }
.story-header { display: flex; justify-content: space-between; margin-bottom: 12px; }
.stars { color: #ffc107; font-size: 13px; }
.story-date { font-size: 11px; color: #888; font-style: italic; }
.story-text-fixed { font-size: 14px; color: #333; line-height: 1.6; font-style: italic; margin-bottom: 18px; flex-grow: 1; }
.story-author { font-size: 13px; color: #0d47a1; border-top: 1px solid #eee; padding-top: 12px; }
.story-author span { color: #666; font-size: 11px; display: block; margin-top: 3px; }
.btn-share-story-fixed { width: 100%; background: #0d47a1; color: #fff; border: none; padding: 12px 15px; border-radius: 25px; font-weight: bold; cursor: pointer; box-shadow: 0 4px 10px rgba(13, 71, 161, 0.3); font-size: 14px; margin-top: auto; }
/* Mid Col: Hero Stories Display */
.hero-story-display-fixed { background: #fef2f2; border: 1px solid #fecaca; padding: 25px; border-radius: 12px; min-height: 250px; display: flex; flex-direction: column; justify-content: center; flex-grow: 1; }

/* Right Col: FAQ Button Grid (NEW UI) */
.faq-category-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; padding-top: 10px; }
.faq-cat-btn { padding: 8px 18px; border: 1px solid #0d47a1; background: transparent; color: #0d47a1; border-radius: 25px; cursor: pointer; font-size: 13px; font-weight: 600; transition: all 0.3s ease; }
.faq-cat-btn:hover { background: #eef2ff; }
.faq-cat-btn.active { background: #0d47a1; color: #fff; box-shadow: 0 4px 10px rgba(13, 71, 161, 0.2); }

/* NEW FAQ PAGE ACCORDION STYLES */
.faq-item { background: #fff; margin-bottom: 10px; border-radius: 8px; cursor: pointer; text-align: left; border: 1px solid #ddd; padding: 15px; transition: 0.3s; }
.faq-item:hover { border-color: #0d47a1; }
.faq-question { font-weight: 600; color: #333; font-size: 15px; display: flex; justify-content: space-between; align-items: center; }
.faq-question .arrow { transition: transform 0.3s ease; color: #0d47a1; }
.faq-answer { display: none; color: #666; font-size: 14px; margin-top: 12px; padding-top: 12px; border-top: 1px solid #eee; line-height: 1.6; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); } /* Arrow Fix */

/* Stay Connected */
.stay-connected { max-width: 900px; margin: 40px auto; padding: 0 20px; text-align: center; }
.section-title { font-size: 20px; color: #1e293b; margin-bottom: 25px; position: relative; display: inline-block; }
.section-title::before, .section-title::after { content: ''; position: absolute; top: 50%; width: 40px; height: 1px; background: #cbd5e1; }
.section-title::before { left: -50px; }
.section-title::after { right: -50px; }
.social-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
@media(min-width: 768px) { .social-grid { grid-template-columns: repeat(3, 1fr); } }
.social-card { display: flex; align-items: center; padding: 15px; border-radius: 12px; cursor: pointer; text-align: left; }
.icon-box { font-size: 30px; margin-right: 15px; }
.social-text h4 { font-size: 14px; margin-bottom: 2px; font-weight: 600;}
.social-text p { font-size: 11px; color: #64748b; }
.arrow-btn-small { margin-left: auto; width: 25px; height: 25px; color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 2px 5px rgba(0,0,0,0.1); font-size: 10px; }
.instagram { background: #fdf2f8; border: 1px solid #fbcfe8; } .instagram .social-text h4 { color: #db2777; } .instagram .arrow-btn-small { background-color: #db2777; }
.facebook { background: #eff6ff; border: 1px solid #bfdbfe; } .facebook .social-text h4 { color: #1d4ed8; } .facebook .arrow-btn-small { background-color: #2563eb; }
.youtube { background: #fef2f2; border: 1px solid #fecaca; } .youtube .social-text h4 { color: #dc2626; } .youtube .arrow-btn-small { background-color: #ef4444; }

/* Trust Features */
.trust-features { max-width: 900px; margin: 20px auto; padding: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: white; border-radius: 16px; }
@media(min-width: 768px) { .trust-features { grid-template-columns: repeat(4, 1fr); } }
.feature-item { display: flex; align-items: center; gap: 12px; }
.feature-icon { font-size: 24px; }
.feature-item h4 { font-size: 13px; color: #1e293b; margin-bottom: 2px; }
.feature-item p { font-size: 11px; color: #64748b; }

/* LIVE SOCIAL PROOF TOAST */
/* LIVE SOCIAL PROOF TOAST (Fixed for CTA Bar) */
.toast-popup { 
    position: fixed; 
    bottom: 90px; /* पहले 30px था, अब इसे बटन के ऊपर खिसका दिया है */
    left: 30px; 
    background: #1c1c1c; 
    color: #ffffff; 
    padding: 16px 20px; 
    border-radius: 10px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.4); 
    z-index: 10000; /* इसका ज़ेड-इंडेक्स बढ़ा दिया ताकि सबसे ऊपर रहे */
    transition: transform 0.5s ease, opacity 0.5s ease; 
    max-width: 320px; 
    border-left: 4px solid #22c55e; 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
}
.toast-popup.hidden { 
    transform: translateY(150px); 
    opacity: 0; 
    pointer-events: none; 
}
.toast-icon { font-size: 18px; color: #22c55e; margin-top: 2px; }
.toast-content h4 { font-size: 15px; font-weight: 600; margin-bottom: 5px; color: #ffffff; display: flex; align-items: center; gap: 8px; }
.toast-content p { font-size: 13px; color: #e0e0e0; line-height: 1.4; font-weight: 400; }

@media(max-width: 768px) { 
    .toast-popup { 
        bottom: 80px; /* मोबाइल पर इसे बटन्स के ठीक ऊपर सेट कर दिया है */
        left: 20px; 
        right: 20px; 
        max-width: calc(100% - 40px); 
    } 
}

/* MODAL (POPUP) */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center; z-index: 2000; }
.modal-content { background: #fff; padding: 25px; border-radius: 12px; width: 90%; max-width: 400px; position: relative; }
.close-btn { position: absolute; top: 15px; right: 15px; font-size: 24px; cursor: pointer; color: #333; }
.modal-content input, .modal-content select, .modal-content textarea { width: 100%; margin-bottom: 15px; padding: 10px; border: 1px solid #ccc; border-radius: 6px; font-family: inherit; }
.btn-submit-story { width: 100%; background: #0d47a1; color: #fff; padding: 12px; border: none; border-radius: 6px; font-weight: bold; cursor: pointer; }
.text-success { color: #16a34a; font-weight: 600; font-size: 14px; }
.hidden { display: none !important; }

/* Footer */
.footer { background: #f8fafc; padding: 30px 20px 15px; text-align: center; border-top: 1px solid #e2e8f0; margin-top: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin: 0 auto 30px; }
@media(min-width: 768px) { .footer-contact { flex-direction: row; justify-content: space-around; text-align: left;} }
.contact-item { color: #1e293b; font-size: 14px; }
.contact-item i { margin-right: 5px; }
.contact-item small { color: #64748b; font-size: 12px; display: block; margin-top: 3px; margin-left: 20px; }
.copyright { font-size: 12px; color: #94a3b8; border-top: 1px solid #e2e8f0; padding-top: 15px; }
/* Application Form Styles */
.form-card { background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; font-size: 14px; font-weight: 600; color: #333; margin-bottom: 8px; }
.input-group input, .input-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; font-size: 14px; transition: 0.3s; }
.input-group input:focus, .input-group select:focus { border-color: #0d47a1; outline: none; box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1); }
.radio-group { display: flex; align-items: center; padding: 5px 0; }
.radio-group label { font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.btn-submit-form { width: 100%; padding: 15px; background: #0d47a1; color: #fff; border: none; border-radius: 30px; font-size: 16px; font-weight: bold; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3); }
.btn-submit-form:hover { background: #002db3; transform: translateY(-2px); }
/* MODERN FORM STYLES (Based on Screenshots) */
.form-card-modern { background: #fff; padding: 35px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.form-section-title { display: flex; align-items: center; font-size: 16px; font-weight: 700; color: #1e40af; margin: 30px 0 15px; padding-bottom: 8px; border-bottom: 1px solid #e2e8f0; }
.step-badge { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: #1e40af; color: #fff; border-radius: 50%; font-size: 13px; font-weight: bold; margin-right: 10px; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.input-group { margin-bottom: 20px; text-align: left; width: 100%; }
.input-group label { display: block; font-size: 14px; font-weight: 500; color: #1e293b; margin-bottom: 8px; }
.req { color: #dc2626; margin-left: 2px; } /* Red Asterisk */
.input-group input, .input-group select { width: 100%; padding: 12px 15px; border: 1px solid #cbd5e1; border-radius: 8px; font-family: inherit; font-size: 14px; background: #fff; transition: 0.3s; color: #333; }
.input-group input:focus, .input-group select:focus { border-color: #0d47a1; outline: none; box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1); }
.radio-inline-group { display: flex; gap: 20px; align-items: center; padding: 10px 0; }
.radio-inline-group label { font-weight: 400; cursor: pointer; display: flex; align-items: center; gap: 6px; margin: 0; font-size: 14px; color: #333; }
.radio-inline-group input[type="radio"] { width: 16px; height: 16px; accent-color: #0d47a1; cursor: pointer; margin: 0; }
.highlight-box { background-color: #fdfbf7; padding: 12px 15px; border-radius: 8px; border: 1px solid #fef08a; }
.hidden { display: none !important; }
.btn-submit-form { width: 100%; padding: 15px; background: #0d47a1; color: #fff; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-submit-form:hover { background: #002db3; }

/* Mobile View for Form */
@media(max-width: 600px) {
    .grid-2-col { grid-template-columns: 1fr; gap: 0; }
    .form-card-modern { padding: 20px; }
    .input-group { margin-bottom: 15px; }
}

/* ========================================= */
/* PREMIUM MULTI-STEP WIZARD UI              */
/* ========================================= */
.app-header { background: #fff; padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; position: fixed; top: 0; width: 100%; box-shadow: 0 1px 5px rgba(0,0,0,0.05); z-index: 1000; }
.trust-badge-small { background: #eff6ff; color: #1d4ed8; padding: 5px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; border: 1px solid #bfdbfe; }
.form-card-modern { background: #fff; border-radius: 16px; padding: 25px 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }

/* Progress Bar */
.progress-wrapper { margin-bottom: 30px; text-align: right; }
.step-indicator { display: flex; justify-content: space-between; position: relative; margin-bottom: 8px; }
.step-line { position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: #e2e8f0; z-index: 1; transform: translateY(-50%); }
.step-dot { width: 24px; height: 24px; background: #fff; border: 2px solid #cbd5e1; border-radius: 50%; color: #64748b; font-size: 11px; font-weight: bold; display: flex; align-items: center; justify-content: center; z-index: 2; transition: 0.3s; }
.step-dot.active { background: #1e40af; border-color: #1e40af; color: #fff; }
.step-text { font-size: 11px; font-weight: 600; color: #1e40af; }

/* Typography & Layout */
.step-title { font-size: 20px; color: #1e293b; margin-bottom: 5px; font-weight: 700; }
.step-subtitle { font-size: 13px; color: #64748b; margin-bottom: 25px; }
.section-label { display: flex; align-items: center; gap: 8px; color: #1e40af; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 8px; }
.req { color: #dc2626; }

/* Input Fields with Icons */
.input-with-icon { position: relative; display: flex; align-items: center; }
.input-with-icon i { position: absolute; left: 15px; color: #94a3b8; font-size: 15px; }
.input-with-icon input { width: 100%; padding: 14px 15px 14px 40px; border: 1px solid #cbd5e1; border-radius: 8px; font-family: inherit; font-size: 14px; transition: 0.3s; }
.input-with-icon input:focus { border-color: #1e40af; outline: none; }
.info-text { display: block; color: #64748b; font-size: 11px; margin-top: 6px; }

/* Custom Radio Cards (Gender & Jobs) */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.radio-card input, .radio-card-small input, .list-radio-card input, .list-radio-simple input, .pill-radio input { display: none; }
.radio-card .card-content { border: 1.5px solid #e2e8f0; border-radius: 12px; padding: 20px 10px; text-align: center; cursor: pointer; transition: 0.2s; background: #fff; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.radio-card i { font-size: 28px; color: #0d47a1; }
.radio-card strong { font-size: 14px; color: #1e293b; }
.radio-card span { font-size: 11px; color: #64748b; }
.radio-card input:checked + .card-content { border-color: #1e40af; background: #eff6ff; }

/* Small Radio Cards (Job Segments) */
.radio-card-small .card-content { border: 1.5px solid #e2e8f0; border-radius: 8px; padding: 15px 10px; text-align: center; cursor: pointer; transition: 0.2s; background: #fff; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.radio-card-small i { font-size: 24px; }
.radio-card-small strong { font-size: 12px; color: #1e293b; }
.radio-card-small input:checked + .card-content { border-color: #1e40af; background: #eff6ff; box-shadow: 0 2px 10px rgba(30,64,175,0.1); }

/* List Radio Cards (Vehicle & Source) */
.list-radio-card { display: block; margin-bottom: 12px; }
.list-radio-card .card-content-list { border: 1.5px solid #e2e8f0; border-radius: 12px; padding: 15px; display: flex; align-items: center; cursor: pointer; background: #fff; transition: 0.2s; }
.list-radio-card .card-content-list.bg-light-red { background: #fef2f2; border-color: #fecaca; }
.list-radio-card i { font-size: 24px; width: 40px; text-align: center; margin-right: 15px; }
.list-radio-card .icon-blue { color: #3b82f6; } .list-radio-card .icon-gray { color: #64748b; } .list-radio-card .icon-red { color: #dc2626; }
.list-radio-card .text-area { flex-grow: 1; display: flex; flex-direction: column; }
.list-radio-card strong { font-size: 14px; color: #1e293b; }
.list-radio-card span { font-size: 11px; color: #64748b; }
.radio-circle { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #cbd5e1; margin-left: 10px; position: relative; }
.list-radio-card input:checked + .card-content-list { border-color: #1e40af; background: #eff6ff; }
.list-radio-card input:checked + .card-content-list .radio-circle { border-color: #1e40af; background: #1e40af; }
.list-radio-card input:checked + .card-content-list .radio-circle::after { content: ''; position: absolute; top: 4px; left: 4px; width: 6px; height: 6px; background: white; border-radius: 50%; }

/* Simple List Radio (Source) */
.list-radio-simple { display: block; margin-bottom: 10px; }
.card-content-simple { border: 1px solid #e2e8f0; padding: 12px 15px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 14px; font-weight: 500; }
.card-content-simple i { font-size: 18px; width: 25px; margin-right: 5px; vertical-align: middle; }
.list-radio-simple input:checked + .card-content-simple { border-color: #1e40af; background: #eff6ff; color: #1e40af; }
.list-radio-simple input:checked + .card-content-simple .radio-circle { border-color: #1e40af; background: #1e40af; }
.list-radio-simple input:checked + .card-content-simple .radio-circle::after { content: ''; position: absolute; top: 4px; left: 4px; width: 6px; height: 6px; background: white; border-radius: 50%; }

/* Pill Buttons (Yes/No) */
.pill-radio .pill-btn { border: 1px solid #cbd5e1; padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; color: #475569; cursor: pointer; transition: 0.2s; }
.pill-radio input:checked + .pill-btn { background: #1e40af; color: #fff; border-color: #1e40af; }

/* Notes & Highlights */
.security-note { background: #f0fdf4; border: 1px solid #bbf7d0; padding: 12px; border-radius: 8px; margin-top: 25px; }
.security-note strong { display: block; color: #16a34a; font-size: 13px; margin-bottom: 4px; }
.security-note p { color: #15803d; font-size: 11px; margin: 0; }
.success-note { background: #f0fdf4; color: #16a34a; font-size: 12px; padding: 8px 12px; border-radius: 6px; margin-top: 10px; font-weight: 500; }
.info-box-light { background: #f8fafc; border: 1px solid #e2e8f0; padding: 12px; border-radius: 8px; font-size: 12px; color: #475569; margin-top: 15px; }
.privacy-lock { text-align: center; font-size: 11px; color: #64748b; margin-top: 15px; }

/* Buttons */
.btn-primary { width: 100%; background: #1e40af; color: #fff; border: none; padding: 14px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 15px; }
.btn-group-nav { display: flex; gap: 10px; margin-top: 20px; }
.btn-secondary { flex: 1; background: #fff; color: #1e40af; border: 1px solid #cbd5e1; padding: 12px; border-radius: 8px; font-weight: 600; cursor: pointer; }
.btn-primary-half { flex: 1; background: #1e40af; color: #fff; border: none; padding: 12px; border-radius: 8px; font-weight: 600; cursor: pointer; }
.mt-4 { margin-top: 25px; }

/* ================= SUCCESS SCREEN ================= */
.success-card { background: #fff; border-radius: 16px; padding: 30px 20px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.success-icon-large { width: 70px; height: 70px; background: #22c55e; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; margin: 0 auto; box-shadow: 0 10px 20px rgba(34,197,94,0.3); }
.ticket-box { border: 1px solid #e2e8f0; border-radius: 12px; display: flex; margin-bottom: 25px; background: #f8fafc; }
.ticket-half { flex: 1; padding: 15px 10px; text-align: left; }
.ticket-label { display: block; font-size: 11px; color: #64748b; margin-bottom: 5px; }
.ticket-value { font-size: 16px; font-weight: 700; color: #1e293b; }
.success-info-grid { display: grid; grid-template-columns: 1fr; gap: 15px; text-align: left; }
.info-item { display: flex; align-items: center; gap: 12px; background: #f0fdf4; padding: 12px; border-radius: 8px; }
.info-item i { color: #1e40af; font-size: 18px; }
.info-item p { font-size: 12px; color: #333; margin: 0; line-height: 1.4; font-weight: 500;}
.hidden { display: none !important; }
/* Detailed Job Cards (Mobile Optimized) */
.job-list-vertical { display: flex; flex-direction: column; gap: 12px; }
.job-detail-card { cursor: pointer; display: block; }
.job-detail-card input { display: none; }
.job-detail-card .card-inner { border: 1.5px solid #e2e8f0; border-radius: 10px; padding: 15px; background: #fff; transition: 0.2s; position: relative; }
.job-detail-card input:checked + .card-inner { border-color: #1e40af; background: #eff6ff; box-shadow: 0 4px 12px rgba(30,64,175,0.08); }

.job-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.job-title { font-size: 14px; font-weight: 700; color: #1e293b; display: flex; align-items: center; gap: 8px; }
.job-title i { font-size: 16px; width: 20px; text-align: center; }

/* Badges */
.badge-fire { background: #fee2e2; color: #dc2626; padding: 3px 8px; border-radius: 4px; font-size: 10px; font-weight: bold; }
.badge-trending { background: #fef3c7; color: #d97706; padding: 3px 8px; border-radius: 4px; font-size: 10px; font-weight: bold; }
.badge-female { background: #fdf2f8; color: #ec4899; padding: 3px 8px; border-radius: 4px; font-size: 10px; font-weight: bold; }

/* Earnings & Details */
.job-earning { font-size: 15px; font-weight: 800; color: #16a34a; margin-bottom: 8px; }
.job-details { display: flex; flex-direction: column; gap: 4px; font-size: 11px; color: #64748b; }
.payout-badge { color: #0d47a1; font-weight: 600; }
/* =========================================
   MOBILE FIX FOR HEADER & LANGUAGE BUTTON
   ========================================= */
@media (max-width: 450px) {
    /* 1. हेडर की दोनों तरफ की खाली जगह (Padding) 20px से 8px कर दी */
    header.navbar {
        padding: 10px 8px !important;
    }
    
    /* 2. लोगो की ऊंचाई थोड़ी सी कम की है ताकि सब फिट आ जाए */
    .logo img {
        height: 28px !important;
    }

    /* 3. टैगलाइन का मार्जिन और साइज मोबाइल के हिसाब से सेट किया */
    #faq-tagline1 {
        font-size: 10px !important;
        margin-left: 32px !important; 
        letter-spacing: 0 !important;
    }

    /* 4. भाषा वाले बटनों को सिकुड़ने से रोका और थोड़ा स्लिम (Slim) कर दिया */
    .lang-toggle {
        flex-shrink: 0 !important; 
        display: flex;
    }
    .btn-lang {
        padding: 4px 10px !important; 
        font-size: 12px !important;
    }
}
/* =========================================
   HIDE FOOTER SECTIONS (For Specific Pages)
   ========================================= */
/* Application पेज (जहाँ hide-social लगा है) से सोशल मीडिया और CTA बटन दोनों को छुपाने के लिए */
.hide-social .stay-connected,
.hide-social .fixed-cta-bar {
    display: none !important;
}
/* =========================================
   🚀 GLOBAL FIXED CTA BOTTOM BAR (Call/WA/Apply) 🚀
   ========================================= */
.fixed-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 12px 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 9999;
    border-top: 1px solid #e2e8f0;
}

.fixed-cta-bar a {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 12px 5px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.3s;
}

.btn-apply-fixed { 
    background: #2563eb; 
    color: white; 
    box-shadow: 0 4px 12px rgba(37,99,235,0.25); 
}
.btn-apply-fixed:active { transform: scale(0.96); }

.btn-wa-fixed { 
    background: #22c55e; 
    color: white; 
    box-shadow: 0 4px 12px rgba(34,197,94,0.25); 
}
.btn-wa-fixed:active { transform: scale(0.96); }

.btn-call-fixed { 
    background: #f1f5f9; 
    color: #0f172a; 
    border: 1px solid #cbd5e1; 
}
.btn-call-fixed:active { transform: scale(0.96); }
/* =========================================
   OFFERS & UPDATES CARD CSS (Main Page)
   ========================================= */
.offers-update-card {
    grid-column: 1 / -1; /* यह ग्रिड में पूरी चौड़ाई (Full Width) लेगा */
    width: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-left: 4px solid #f59e0b; /* Orange highlight */
    border-radius: 12px;
    padding: 15px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 5px; 
}

.offers-update-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.offers-icon-wrap {
    position: relative;
    width: 45px;
    height: 45px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}

.offers-icon-wrap i {
    color: #d97706;
    font-size: 18px;
    z-index: 2;
}

/* 🟢 Pulsing Animation Effect 🟢 */
.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fde68a;
    animation: pulsing 1.5s ease-out infinite;
    z-index: 1;
}

@keyframes pulsing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.offers-text-content {
    flex: 1;
}

.offers-text-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
    margin-top: 0;
}

.offers-text-content p {
    font-size: 12px;
    color: #475569;
    font-weight: 500;
    margin: 0;
}

.offers-arrow {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.new-badge {
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.offers-arrow i {
    color: #94a3b8;
    font-size: 14px;
}
