/* Global Styles */
:root {
    --primary-color: #1a73e8;
    --secondary-color: #0d47a1;
    --accent-color: #ff9800;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --hover-shadow: 0 8px 15px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: var(--shadow);
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Navbar */
nav {
    background-color: #ffffff;
    border-bottom: 2px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

.nav-container ul {
    display: flex;
}

.nav-container li a {
    display: block;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.nav-container li a:hover {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    background: rgba(26, 115, 232, 0.05);
}

/* Ticker/Marquee */
.ticker-wrap {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 0;
}

.ticker-content {
    max-width: 1200px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.ticker-label {
    background: #d32f2f;
    color: white;
    padding: 2px 10px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-right: 15px;
    border-radius: 4px;
    z-index: 2;
}

.ticker-text {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-weight: 500;
    color: #d32f2f;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Main Content */
.main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 15px;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-card {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.telegram { background: #0088cc; }
.whatsapp { background: #25d366; }
.youtube { background: #ff0000; }
.facebook { background: #1877f2; }

/* Dashboard Grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .job-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .job-grid { grid-template-columns: 1fr; }
}

.grid-section {
    background: var(--card-bg);
    border: 1px solid #eaeaea;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.section-header {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1rem;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
}

.section-body {
    padding: 0;
}

.job-list {
    list-style: none;
}

.job-list li {
    border-bottom: 1px solid #f0f0f0;
}

.job-list li:last-child {
    border-bottom: none;
}

.job-list a {
    display: block;
    padding: 10px 15px;
    font-size: 0.95rem;
    color: #333;
    transition: background 0.2s;
}

.job-list a:hover {
    background: #f1f8fe;
    color: var(--primary-color);
}

.new-badge {
    background: #f44336;
    color: white;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 5px;
    text-transform: uppercase;
}

/* Footer */
footer {
    background: #202124;
    color: #9aa0a6;
    padding: 3rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    margin: 0 10px;
    color: #fff;
    font-size: 0.9rem;
}

.copyright {
    font-size: 0.85rem;
}
