/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f8f9fa;
    color:#333;
}

/* ==========================
   HEADER
========================== */

.main-header{
    background:#0f3d33;
    padding:20px 5%;
}

.container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo h2{
    color:white;
    font-size:40px;
}

.logo span{
    color:#d4af37;
}

.logo p{
    color:#ddd;
    font-size:14px;
}

.nav-menu ul{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-menu a{
    color:white;
    text-decoration:none;
    font-weight:600;
}

/* ==========================
   HERO
========================== */

.hero{
    padding:80px 5%;
    background:#f8f9fa;
}

.hero-container{

    max-width:1200px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

.hero-content{

    flex:1;

}

.hero-image{

    flex:1;

}

.hero-image img{

    width:100%;

    max-width:550px;

    display:block;

    margin:auto;

    border-radius:20px;

}

.hero-badge{

    display:inline-block;

    background:#d4af37;

    color:#0f3d33;

    padding:10px 18px;

    border-radius:50px;

    font-weight:bold;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:64px;

    line-height:1.1;

    color:#0f3d33;

    margin-bottom:25px;

}

.hero-content p{

    font-size:22px;

    line-height:1.7;

    color:#555;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:#0f3d33;

    color:white;

    text-decoration:none;

    padding:18px 32px;

    border-radius:10px;

    font-weight:bold;

}

.btn-secondary{

    border:2px solid #0f3d33;

    color:#0f3d33;

    text-decoration:none;

    padding:18px 32px;

    border-radius:10px;

    font-weight:bold;

}

/* ==========================
   LATEST JOBS
========================== */

.latest-jobs{

    padding:80px 5%;

    background:white;

}

.jobs-container{

    max-width:1200px;

    margin:auto;

}

.latest-jobs h2{

    text-align:center;

    font-size:42px;

    color:#0f3d33;

    margin-bottom:15px;

}

.jobs-subtitle{

    text-align:center;

    color:#666;

    margin-bottom:40px;

}

.job-card{

    background:white;

    padding:25px;

    border-radius:15px;

    margin-bottom:20px;

    box-shadow:0 4px 12px rgba(0,0,0,0.08);

}

.job-card h3{

    color:#0f3d33;

    margin-bottom:10px;

}

.job-card p{

    color:#666;

    margin-bottom:10px;

}

.job-card a{

    text-decoration:none;

    color:#d4af37;

    font-weight:bold;

}

.view-all{

    text-align:center;

    margin-top:40px;

}

.view-btn{

    display:inline-block;

    background:#0f3d33;

    color:white;

    text-decoration:none;

    padding:15px 35px;

    border-radius:10px;

}
.jobs-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}

.job-card{

    background:#ffffff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 8px 25px rgba(0,0,0,0.08);

    transition:0.35s;

}

.job-card:hover{

    transform:translateY(-8px);

    border:2px solid #D4AF37;

    box-shadow:0 15px 35px rgba(0,0,0,0.12);

}

.badge{

    display:inline-block;

    background:#D4AF37;

    color:#0F3D33;

    padding:6px 14px;

    border-radius:50px;

    font-size:13px;

    font-weight:bold;

    margin-bottom:18px;

}

.job-card h3{

    color:#0F3D33;

    margin-bottom:12px;

}

.job-card p{

    color:#666;

    line-height:1.6;

    margin-bottom:20px;

}

.deadline{

    font-weight:600;

    margin-bottom:20px;

    color:#222;

}

.job-card a{

    color:#D4AF37;

    text-decoration:none;

    font-weight:bold;

}
/* ==========================
   JOB CATEGORIES
========================== */

.job-categories{

    padding:80px 5%;

    background:#f8f9fa;

}

.categories-container{

    max-width:1200px;

    margin:auto;

}

.job-categories h2{

    text-align:center;

    font-size:42px;

    color:#0F3D33;

    margin-bottom:15px;

}

.category-subtitle{

    text-align:center;

    color:#666;

    font-size:18px;

    margin-bottom:50px;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.category-card{

    background:white;

    padding:35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);

    transition:0.3s;

    cursor:pointer;

}

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,0.12);

}

.category-card h3{

    color:#0F3D33;

    font-size:24px;

}
/* ==========================
   IMPORTANT DEADLINES
========================== */

.important-deadlines{

    padding:80px 5%;

    background:#ffffff;

}

.deadline-container{

    max-width:1200px;

    margin:auto;

}

.important-deadlines h2{

    text-align:center;

    font-size:42px;

    color:#0F3D33;

    margin-bottom:15px;

}

.deadline-subtitle{

    text-align:center;

    color:#666;

    font-size:18px;

    margin-bottom:50px;

}

.deadline-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#f8f9fa;

    padding:20px 30px;

    border-radius:16px;

    margin-bottom:20px;

    box-shadow:0 4px 12px rgba(0,0,0,0.08);

    transition:0.3s;

}


.deadline-card:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

}

.deadline-left h3{

    color:#0F3D33;

    font-size:26px;

    font-weight:700;

    margin-bottom:10px;

}

.deadline-left p{

    color:#666;

    font-size:16px;

    font-weight:500;

}

.deadline-btn{

    background:#0F3D33;

    color:#ffffff;

    text-decoration:none;

    padding:14px 32px;

    border-radius:8px;

    font-weight:600;

    transition:0.3s;

}

.deadline-btn:hover{

    background:#D4AF37;

    color:#0F3D33;

}
.deadline-badge{
    display:inline-block;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
    margin-bottom:10px;
    color:#fff;
}

.closing{
    background:#f59e0b;
}

.urgent{
    background:#dc2626;
}

.open{
    background:#16a34a;
}
/* ==========================
   DEADLINE STATUS BADGES
========================== */

.deadline-badge{

    display:inline-block;

    padding:6px 14px;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    color:#ffffff;

    margin-bottom:12px;

    letter-spacing:0.5px;

}

.closing{

    background:#f59e0b;

}

.urgent{

    background:#dc2626;

}

.open{

    background:#16a34a;

}
/* =========================================
   WHY CHOOSE DREAMJOB
========================================= */

.why-choose{

    background:#f8f9fa;

    padding:90px 5%;

}

.why-container{

    max-width:1200px;

    margin:auto;

}

.why-choose h2{

    text-align:center;

    font-size:48px;

    color:#0F3D33;

    margin-bottom:15px;

}

.why-subtitle{

    text-align:center;

    font-size:18px;

    color:#666;

    margin-bottom:60px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.why-card{

    background:#ffffff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 5px 20px rgba(0,0,0,0.06);

    transition:0.3s ease;

}

.why-card:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,0,0,0.10);

}

.why-icon{

    font-size:40px;

    margin-bottom:18px;

}

.why-card h3{

    font-size:28px;

    color:#0F3D33;

    margin-bottom:12px;

}

.why-card p{

    font-size:17px;

    color:#666;

    line-height:1.7;

}
/* ===========================
   Latest Results Section
=========================== */

.results-section{
    background:#f8fafc;
    padding:80px 20px;
}

.results-container{
    max-width:1200px;
    margin:auto;
}

.results-section h2{
    text-align:center;
    font-size:42px;
    color:#0F3D33;
    margin-bottom:10px;
}

.results-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:50px;
    font-size:18px;
}

.results-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.result-card{
    background:#ffffff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:0.3s;
}

.result-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.10);
}

.result-tag{
    display:inline-block;
    background:#FFE8CC;
    color:#C96B00;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.result-tag.admit{
    background:#DFF7E4;
    color:#1D8F4E;
}

.result-card h3{
    font-size:22px;
    color:#0F3D33;
    margin-bottom:12px;
    line-height: 1.3;
}

.result-card p{
    color:#666;
    margin-bottom:20px;
}

.result-card a{
    text-decoration:none;
    color:#0F3D33;
    font-weight:600;
}

.result-card a:hover{
    color:#D4AF37;
}
/* ==========================
   FOOTER
========================== */

.main-footer{
    background:#0F3D33;
    color:#ffffff;
    padding:70px 20px 20px;
}

.footer-container{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-logo{
    font-size:36px;
    font-weight:700;
    color:#D4AF37;
    margin-bottom:20px;
}

.footer-col p{
    color:#d6e2de;
    line-height:1.8;
    font-size:16px;
}

.footer-col h3{
    font-size:22px;
    margin-bottom:20px;
    color:#ffffff;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#d6e2de;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#D4AF37;
    padding-left:5px;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.15);
    color:#d6e2de;
    font-size:15px;
}
/* ===============================
   LATEST GOVERNMENT JOBS HERO
================================= */

.latest-jobs-hero {
    background: linear-gradient(135deg, #0f3d33, #145c4a);
    padding: 90px 20px;
}

.latest-jobs-hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.latest-jobs-hero .hero-content {
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
}

.latest-jobs-hero h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.latest-jobs-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: #f4b400;
    color: #0f3d33;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0f3d33;
}
/* ===============================
   JOB SEARCH SECTION
================================= */

.job-search-section {
    background: #f8fafc;
    padding: 40px 20px;
}

.job-search-box {
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.job-search-box input,
.job-search-box select {
    height: 50px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 15px;
    outline: none;
}
/* ==========================================
   JOB LIST SECTION
========================================== */

.job-list-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.job-list-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.job-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-category {
    display: inline-block;
    background: #0f3d33;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.job-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222222;
}

.job-card p {
    margin-bottom: 10px;
    color: #555555;
}

.view-details-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
}

.view-details-btn:hover {
    transform: translateY(-2px);
}
/* ===================================
   FINAL JOB GRID
=================================== */

.job-grid-section {
    padding: 60px 20px;
    background: #f8f9fa;
}
.job-grid-section .container {
    display: block;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 25px;
}

.job-card-link {
    text-decoration: none;
    color: inherit;
}

.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-6px);
}

.status-badge {
    display: inline-block;
    background: #16a34a;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.job-card h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.4;
}

.job-card p {
    margin-bottom: 12px;
    color: #4b5563;
}

.card-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    font-weight: 600;
    color: #0f3d33;
}

/* Mobile */

@media (max-width: 768px) {

    .job-grid {
        grid-template-columns: 1fr;
    }

}
/* ===================================
   JOB SECTION HEADING
=================================== */

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 42px;
    color: #0f3d33;
    margin-bottom: 10px;
}

.section-heading p {
    font-size: 20px;
    font-weight: 600;
    color: #f4b400;
    margin-bottom: 10px;
}

.section-heading span {
    color: #666;
    font-size: 16px;
}
/* ===================================
   JOB DETAILS PAGE
=================================== */

.job-details-page {
    background: #f8f9fa;
    padding: 60px 20px;
}

.job-details-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.job-header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.job-header h1 {
    font-size: 42px;
    color: #0f3d33;
    margin: 15px 0;
}

.job-meta {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.job-content h2 {
    color: #0f3d33;
    margin-top: 30px;
    margin-bottom: 15px;
}

.job-content p,
.job-content li {
    line-height: 1.8;
    color: #444;
}

.job-content ul {
    padding-left: 20px;
}

.job-content a {
    color: #0f3d33;
    font-weight: 600;
    text-decoration: none;
}
.job-info-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:25px;
}

.info-item{
    background:#f8f9fa;
    padding:18px;
    border-radius:12px;
    border:1px solid #e5e7eb;
}

.info-item strong{
    display:block;
    color:#0f3d33;
    margin-bottom:8px;
    font-size:14px;
    text-transform:uppercase;
}

.info-item span{
    color:#333;
    font-size:16px;
    font-weight:600;
}
.job-links{
    display:flex;
    gap:15px;
    margin-top:20px;
    flex-wrap:wrap;
}

.btn-pdf,
.btn-apply{
    text-decoration:none;
    padding:14px 24px;
    border-radius:10px;
    font-weight:600;
    transition:0.3s;
}

.btn-pdf{
    background:#f3f4f6;
    color:#0f3d33;
    border:1px solid #d1d5db;
}

.btn-apply{
    background:#0f3d33;
    color:#ffffff !important;
}
.btn-apply:hover{
    color:#ffffff;
}

.btn-pdf:hover,
.btn-apply:hover{
    transform:translateY(-2px);
}
.category-container{
    max-width:1200px;
    margin:auto;
}

.category-container h2{
    font-size:36px;
    margin-bottom:30px;
    color:#0F3D33;
}
.category-header{
    margin-bottom:30px;
}

.category-header h2{
    font-size:36px;
    color:#0F3D33;
    margin-bottom:10px;
}

.category-header p{
    color:#666;
    font-size:16px;
    margin:0;
}

.popular-searches{
    padding:80px 0;
}

.search-tags{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
    margin-top:35px;
}

.search-tags a{
    text-decoration:none;
    background:#ffffff;
    color:#0F3D33;
    border:1px solid #dfe8e5;
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.search-tags a:hover{
    background:#0F3D33;
    color:#fff;
    transform:translateY(-3px);
}

html{
    scroll-behavior:smooth;
}

.category-header{
    text-align: center;
}

/* ================= SEO CONTENT ================= */

.seo-content{
    padding:80px 0;
    background:#f8fafb;
}

.seo-content .container{
    max-width:900px;
    margin:0 auto;
    display:block;
}

.seo-content h2{
    font-size:38px;
    color:#0F3D33;
    text-align:center;
    margin-bottom:30px;
    line-height:1.3;
}

.seo-content p{
    display:block;
    width:100%;
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin:20px 0;
    text-align:justify;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width:768px){

    .container{
        flex-direction:column;
        align-items:flex-start;
    }

    .nav-menu{
        width:100%;
        margin-top:20px;
    }

    .nav-menu ul{
        flex-direction:column;
        gap:15px;
    }

}
.hero{
    background:
        linear-gradient(rgba(15,61,51,.75), rgba(15,61,51,.75)),
        url("Assests/images/hero.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-overlay{
    width:100%;
}

.hero-content{
    max-width:650px;
}

.hero h1,
.hero p,
.hero-badge{
    color:#fff;
}

/* ===================================
   LATEST GOVERNMENT JOBS HERO
=================================== */

.latest-jobs-hero{
    position: relative;
    background:
        linear-gradient(rgba(15,61,51,0.70), rgba(15,61,51,0.70)),
        url("Assests/images/doctor.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 650px;
    display: flex;
    align-items: center;
}

.latest-jobs-hero .container{
    max-width:1200px;
    margin:auto;
    width:100%;
}

.latest-jobs-hero .hero-content{
    max-width:650px;
}

.latest-jobs-hero h1{
    font-size:58px;
    color:#ffffff;
    line-height:1.2;
    margin-bottom:20px;
}

.latest-jobs-hero p{
    font-size:20px;
    line-height:1.8;
    color:rgba(255,255,255,0.95);
    margin-bottom:35px;
}

.hero-badge{
    display:inline-block;
    background:#D4AF37;
    color:#0F3D33;
    padding:10px 18px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:25px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#D4AF37;
    color:#0F3D33;
    padding:16px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

.btn-secondary{
    border:2px solid #ffffff;
    color:#ffffff;
    padding:16px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

    .latest-jobs-hero{
        min-height:550px;
        padding:80px 20px;
        background-position:center;
    }

    .latest-jobs-hero h1{
        font-size:40px;
    }

    .latest-jobs-hero p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }
}

.logo img{
    height:140px;
    width:auto;
    display:block;
}
@media (max-width:768px){

    .logo img{
        height:50px;
    }

}

/* ===================================
   JOB HERO
=================================== */

.job-hero{

    background:
    linear-gradient(rgba(15,61,51,.75),rgba(15,61,51,.75)),
    url("../Assests/images/doctor-girl.jpeg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    min-height:420px;

    display:flex;
    align-items:center;
}

.job-hero-overlay{

    width:100%;
    padding:80px 0;

}

.job-hero-content{

    max-width:700px;

}

.job-hero h1{

    color:#ffffff;
    font-size:52px;
    margin:20px 0;

}

.job-hero p{

    color:#ffffff;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;

}

