/* ===== GLOBAL RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Arial, sans-serif;
}

body{
    background:#f8fafc;
    color:#1e293b;
}

/* ===== CONTAINER ===== */
.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ================= HEADER ================= */
.main-header{
    background:#0f172a;
    padding:12px 0;
    position:sticky;
    top:0;
    z-index:999;
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:24px;
    font-weight:800;
    color:#ffffff;
}

.logo span{
    color:#2563eb;
}

.nav{
    display:flex;
    gap:22px;
}

.nav a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
}

.nav a:hover{
    color:#2563eb;
}

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#fff;
}

/* MOBILE MENU */
@media(max-width:768px){

    .menu-btn{
        display:block;
    }

    .nav{
        display:none;
        flex-direction:column;
        background:#0f172a;
        position:absolute;
        top:60px;
        right:0;
        width:100%;
        padding:15px;
    }

    .nav a{
        padding:10px 0;
        border-bottom:1px solid #1e293b;
    }

    .nav.active{
        display:flex;
    }
}

/* ================= HERO ================= */
.hero-section{
    padding:60px 0;
}

.hero-container{
    display:flex;
    align-items:center;
    gap:40px;
}

.hero-image{
    width:50%;
    height:420px;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:16px;
}

.hero-content{
    width:50%;
}

.hero-content h1{
    font-size:40px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    line-height:1.7;
    color:#475569;
}

.hero-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 26px;
    background:#2563eb;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
}

/* ================= BLOG GRID ================= */
.blog-section{
    padding:70px 0;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.blog-card{
    background:#fff;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    overflow:hidden;
}

.blog-card img{
    width:100%;
    height:170px;
    object-fit:cover;
}

.blog-card h3{
    margin:15px;
    font-size:16px;
}

.blog-card p{
    margin:0 15px 15px;
    font-size:14px;
    color:#64748b;
}

.blog-btn{
    margin:0 15px 18px;
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:8px 16px;
    border-radius:6px;
    text-decoration:none;
}

/* ================= HOME NEWS GRID ================= */
.home-news-section{
    padding:50px 0;
}

.home-news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.home-news-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 22px rgba(0,0,0,.1);
    transition:.3s;
}

.home-news-card:hover{
    transform:translateY(-6px);
}

.home-news-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.home-news-content{
    padding:15px;
}

.home-news-title{
    font-size:17px;
    margin-bottom:8px;
}

.home-news-meta{
    font-size:13px;
    color:#64748b;
}

/* ================= JOB SECTION ================= */
.job-section{
    background:#f1f5f9;
    padding:60px 20px;
}

.job-container{
    max-width:1200px;
    margin:auto;
}

.job-title{
    text-align:center;
    font-size:30px;
    font-weight:800;
    margin-bottom:40px;
}

.job-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.job-card{
    background:#fff;
    padding:20px;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.1);
    transition:.3s;
}

.job-card:hover{
    transform:translateY(-6px);
}

.company-name{
    font-size:18px;
    font-weight:800;
    color:#1d4ed8;
    margin-bottom:8px;
}

.position{
    font-size:14px;
    color:#475569;
    margin-bottom:10px;
}

.job-dates{
    font-size:12px;
    color:#64748b;
    margin-bottom:10px;
}

.salary{
    font-size:22px;
    font-weight:900;
    color:#16a34a;
    margin-bottom:12px;
}

.address{
    font-size:13px;
    margin-bottom:15px;
    color:#475569;
}

.call-btn{
    display:block;
    text-align:center;
    background:#ef4444;
    color:#fff;
    padding:9px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.call-btn:hover{
    background:#dc2626;
}

/* ================= FOOTER ================= */
.main-footer{
    background:#0f172a;
    color:#fff;
    text-align:center;
    padding:20px 10px;
    margin-top:40px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){

    .hero-container{
        flex-direction:column;
    }

    .hero-image,
    .hero-content{
        width:100%;
    }

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .home-news-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .job-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .blog-grid,
    .home-news-grid,
    .job-grid{
        grid-template-columns:1fr;
    }

    .hero-content{
        text-align:center;
    }
}