/* Jobaro Premium Theme */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700&display=swap');

:root {
    --primary: #0d6efd;
    --dark: #0f172a;
    --light-bg: #f1f5f9;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light-bg);
    color: #334155;
}

/* Hero Section with Glassmorphism */
.hero-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(13, 110, 253, 0.8)), 
                url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?q=80&w=1500&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0;
    color: white;
    text-align: center;
}

.search-box {
    background: white;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-box input, .search-box select {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Premium Job Card */
.job-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--primary);
    opacity: 0;
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: #cbd5e1;
}

.job-card:hover::before {
    opacity: 1;
}

.company-logo-frame {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.badge-custom {
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* AdSense Ad Placement Styling */
.ad-space {
    background: #e2e8f0;
    border: 2px dashed #94a3b8;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    color: #64748b;
    margin: 20px 0;
}


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
    --primary-blue: #0d6efd;
    --bg-light: #f8fbff;
    --dark-text: #1e293b;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--dark-text);
}

/* Hero UI */
.hero-wrapper {
    background: radial-gradient(circle at top right, #eef2ff, transparent),
                radial-gradient(circle at bottom left, #fff1f2, transparent);
    padding-bottom: 80px;
}

.main-title { letter-spacing: -2px; line-height: 1.1; }

.search-container {
    background: #fff;
    border-radius: 100px;
    padding: 10px 15px;
    max-width: 850px;
    margin: 40px auto 0;
    border: 1px solid #e2e8f0;
}

/* Premium Job Card Styling */
.premium-job-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eff2f6;
    transition: all 0.3s ease;
}

.premium-job-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.08);
    transform: translateY(-3px);
}

.job-logo-wrapper {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.job-logo-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.badge-soft-blue {
    background-color: #e0e7ff;
    color: #4338ca;
    border-radius: 6px;
    padding: 6px 12px;
}

.title-line {
    width: 40px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 10px;
    margin-top: 5px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .search-container { border-radius: 20px; padding: 20px; }
    .main-title { font-size: 2.5rem; }
}