@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    background-color: #f4f7f6;
    color: #333;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden; 
    width: 100%;
}

a { text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #000; }
img { max-width: 100%; height: auto; }

/* ==========================================================================
   2. MAIN LAYOUT & TYPOGRAPHY
   ========================================================================== */
.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding-bottom: 50px; 
}

.section-title {
    text-align: center;
    margin: 60px 0 20px 0;
    font-weight: 800;
    font-size: 28px;
    color: #2c3e50;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.top-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center; 
}

@media (max-width: 800px) {
    .top-split-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   3. MODERN NAVIGATION (Mobile Friendly)
   ========================================================================== */
.main-header {
    background: #ffffff; padding: 0 5%; display: flex; justify-content: space-between;
    align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.08); height: 80px;
    position: sticky; top: 0; z-index: 1000;
}
.logo-container img { max-height: 60px; }
.nav-menu { display: flex; align-items: center; gap: 20px; }
.nav-menu a { color: #333; font-weight: 700; font-size: 13px; text-transform: uppercase; transition: color 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: #2196f3; }

.nav-btn {
    padding: 10px 25px; border-radius: 50px; font-weight: 800; color: #fff !important;
    text-transform: uppercase; font-size: 13px; display: inline-flex; align-items: center; justify-content: center;
}
.nav-btn.profile { background: #4caf50; }
.nav-btn.contact { background: #2196f3; }
.nav-btn:hover { filter: brightness(1.1); transform: translateY(-2px); color: #fff !important; }

.nav-toggle, .nav-toggle-label { display: none; }

@media (max-width: 950px) {
    .nav-toggle-label { display: block; font-size: 24px; cursor: pointer; color: #333; }
    .nav-menu {
        display: none; position: absolute; top: 80px; left: 0; width: 100%;
        background: #ffffff; flex-direction: column; padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .nav-toggle:checked ~ .nav-menu { display: flex; }
    .nav-menu a.nav-btn { width: 80%; margin: 10px auto; text-align: center; }
}

/* ==========================================================================
   4. PREMIUM CARDS, BUTTONS & TRUST BADGES
   ========================================================================== */
.info-card {
    background: #ffffff; padding: 40px; border-radius: 12px;
    text-align: left; display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.submit-btn {
    color: #fff; font-weight: 800; font-size: 14px; padding: 15px 30px;
    border: none; border-radius: 50px; cursor: pointer; text-transform: uppercase;
    transition: all 0.3s ease; display: inline-block; text-align: center;
}
.submit-btn:hover { filter: brightness(1.1); transform: translateY(-2px); color:#fff; text-decoration: none;}

/* Trustpilot Badge */
.trust-badge {
    display: inline-flex; align-items: center; background: #fff; padding: 10px 20px;
    border-radius: 50px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); margin-top: 20px; gap: 10px;
}
.trust-stars { color: #00b67a; font-size: 18px; }

/* Statistics Section */
.stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; margin-bottom: 50px;
}
.stat-box {
    background: #fff; padding: 30px; border-radius: 12px; text-align: center;
    border-bottom: 4px solid #2196f3; box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.stat-box h3 { font-size: 36px; color: #2196f3; font-weight: 800; margin-bottom: 5px; }
.stat-box p { font-size: 13px; font-weight: 700; color: #666; text-transform: uppercase; }

/* How It Works Steps */
.steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; margin-bottom: 50px;
}
.step-card {
    text-align: center; padding: 30px; position: relative;
}
.step-icon {
    width: 80px; height: 80px; background: #e3f2fd; color: #2196f3; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 32px;
    margin: 0 auto 20px auto; position: relative; z-index: 2; border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(33,150,243,0.2);
}
.step-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: #333; }
.step-card p { font-size: 14px; color: #666; }

/* Testimonials / Reviews */
.testimonial-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; margin-bottom: 60px;
}
.testimonial-card {
    background: #fff; padding: 40px 30px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative;
}
.quote-icon { position: absolute; top: 20px; right: 20px; color: #f0f0f0; font-size: 60px; z-index: 0; }
.review-stars { color: #f1c40f; margin-bottom: 15px; font-size: 16px; position: relative; z-index: 1; }
.review-text { font-size: 15px; font-style: italic; color: #555; margin-bottom: 25px; line-height: 1.8; position: relative; z-index: 1; }
.reviewer { display: flex; align-items: center; gap: 15px; position: relative; z-index: 1; }
.reviewer img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.reviewer-info h5 { font-size: 15px; font-weight: 800; color: #333; margin: 0; }
.reviewer-info p { font-size: 12px; color: #888; margin: 0; text-transform: uppercase; font-weight: 600; }

/* Special Offer Banner */
.offer-banner {
    background: linear-gradient(135deg, #2196f3, #8e44ad); padding: 50px 30px;
    border-radius: 16px; text-align: center; color: #fff; margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(33,150,243,0.3); position: relative; overflow: hidden;
}
.offer-banner h2 { font-size: 32px; font-weight: 800; margin-bottom: 15px; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.offer-banner p { font-size: 18px; margin-bottom: 30px; font-weight: 600; }
.offer-badge {
    background: #ff9800; color: #fff; padding: 5px 15px; border-radius: 50px;
    font-size: 12px; font-weight: 800; text-transform: uppercase; display: inline-block;
    margin-bottom: 15px; animation: pulse 2s infinite;
}

/* ==========================================================================
   5. COLORFUL JOB GRID
   ========================================================================== */
.job-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 30px; margin-bottom: 50px; padding: 10px;
}
.job-card {
    background: #ffffff; padding: 40px 25px; border-radius: 12px;
    text-align: center; border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.job-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.job-card i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 70px; height: 70px; border-radius: 50%; font-size: 32px; margin-bottom: 25px;
}
.job-card h3 { font-weight: 800; margin-bottom: 15px; text-transform: uppercase; font-size: 16px; color: #222; }
.job-card p { font-size: 13px; color: #666; margin-bottom: 25px; line-height: 1.5; }
.job-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 20px; border-radius: 50px; font-weight: 800; font-size: 13px; color: #fff; width: 85%;
}

/* Job Colors */
.color-1 { border-top: 5px solid #8e44ad; } .color-1 i { color: #8e44ad; background: rgba(142, 68, 173, 0.1); } .color-1 .job-btn { background: #8e44ad; }
.color-2 { border-top: 5px solid #e74c3c; } .color-2 i { color: #e74c3c; background: rgba(231, 76, 60, 0.1); } .color-2 .job-btn { background: #e74c3c; }
.color-3 { border-top: 5px solid #2ecc71; } .color-3 i { color: #2ecc71; background: rgba(46, 204, 113, 0.1); } .color-3 .job-btn { background: #2ecc71; }
.color-4 { border-top: 5px solid #3498db; } .color-4 i { color: #3498db; background: rgba(52, 152, 219, 0.1); } .color-4 .job-btn { background: #3498db; }
.color-5 { border-top: 5px solid #f39c12; } .color-5 i { color: #f39c12; background: rgba(243, 156, 18, 0.1); } .color-5 .job-btn { background: #f39c12; color: #fff !important; }
.color-6 { border-top: 5px solid #1abc9c; } .color-6 i { color: #1abc9c; background: rgba(26, 188, 156, 0.1); } .color-6 .job-btn { background: #1abc9c; }
.color-7 { border-top: 5px solid #e84393; } .color-7 i { color: #e84393; background: rgba(232, 67, 147, 0.1); } .color-7 .job-btn { background: #e84393; }

/* ==========================================================================
   6. LIVE CLASSIFIED JOB FEED (Modern LinkedIn/Google Style)
   ========================================================================== */
.live-badge {
    background: #e74c3c; color: #fff; font-size: 12px; padding: 3px 10px;
    border-radius: 4px; font-weight: 800; letter-spacing: 1px;
    animation: pulse 2s infinite; display: inline-block; vertical-align: middle;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.classified-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; margin-bottom: 50px;
}
.classified-card {
    background: #fff; padding: 25px; border-radius: 10px; border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); display: flex; flex-direction: column; justify-content: space-between;
    transition: all 0.2s ease;
}
.classified-card:hover { border-color: #2196f3; box-shadow: 0 8px 20px rgba(33,150,243,0.1); }

.job-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.company-logo {
    width: 50px; height: 50px; border-radius: 8px; background: #e3f2fd; color: #2196f3;
    display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0;
}
.job-info { flex-grow: 1; }
.classified-title { font-weight: 800; font-size: 16px; color: #222; margin-bottom: 3px; }
.company-name { font-size: 13px; color: #666; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.verified-icon { color: #1da1f2; font-size: 14px; }

.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
.tag { font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 4px; }
.source-tag { background: #f0f0f0; color: #555; }
.type-tag { background: #e8f5e9; color: #2e7d32; }
.pay-tag { background: #e3f2fd; color: #1565c0; }
.urgent-tag { background: #fdedec; color: #c0392b; }

.job-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f0f0f0; padding-top: 15px; }
.post-time { font-size: 12px; color: #888; font-weight: 600; }
.classified-btn {
    background: #fff; color: #2196f3; border: 2px solid #2196f3; padding: 6px 15px; border-radius: 50px;
    font-weight: 800; font-size: 12px; text-transform: uppercase; transition: all 0.2s;
}
.classified-btn:hover { background: #2196f3; color: #fff; }

/* ==========================================================================
   7. POPULAR POSTS
   ========================================================================== */
.popular-posts-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; margin-bottom: 50px;
}
.post-card {
    display: flex; align-items: center; gap: 15px; background: #fff; padding: 20px;
    border-radius: 10px; border: 1px solid #eee; transition: all 0.3s ease;
}
.post-card:hover { border-color: #2196f3; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.post-icon { width: 50px; height: 50px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.post-content h4 { font-size: 14px; font-weight: 800; color: #333; margin-bottom: 5px; }
.post-content p { font-size: 12px; color: #666; margin: 0; line-height: 1.5; }

/* ==========================================================================
   8. ADS, FOOTER, & STICKY BAR
   ========================================================================== */
.ad-container { text-align: center; margin: 30px auto; width: 100%; overflow: hidden; }

.payment-icons i { transition: transform 0.2s; }
.payment-icons i:hover { transform: scale(1.1); color: #fff; }

.footerfixstickybar {
   position: fixed; left: 0; bottom: 0; width: 100%; height: auto;
   background: rgba(18, 55, 84, 0.95); padding: 15px; text-align: center;
   z-index: 1000; border-top: 2px solid #4caf50; backdrop-filter: blur(5px);
}

@media (max-width: 850px) {
    div[style*="grid-template-columns: 2fr 1fr;"] {
        grid-template-columns: 1fr !important;
    }
}