* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    text-decoration: none;
}

body {
    background: #f6fef9;
}
h1,h2,h3{
    font-size: 19px;
}

/* NAVBAR */
.navbar {
    display: flex;
    height: 69px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 6%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar ul{
    list-style: none;
}
.hamburger{
    display: none;
    cursor: pointer;
    font-size: 25px;
}

.logo {
    font-weight: bold;
    font-size: 20px;
    color: #16a34a;
}
.search-container{
    border: 1px #00E0AC solid;
    width: 80%;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
}
/* SEARCH BAR */
.search-bar {
    flex: 1;
    margin: 0 30px;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #00E0AC;
    margin: 5px 0;
}

.search-bar input {
    flex: 1;
    padding: 6px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
}

.search-bar button {
    padding: 10px 18px;
    background: #22c55e;
    color: white;
    border: none;
    cursor: pointer;
}


/* JOB CARD */
.job-card {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: 0.2s;
    border: 1px solid #ecfdf5;
}

.job-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.job-title {
    font-size: 18px;
    font-weight: bold;
}

.company {
    color: #6b7280;
    margin: 5px 0;
}
.company-logo{
    padding: 5px 10px 0 0;
}
/* BADGES */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 5px;
}

.verified {
    background: #dcfce7;
    color: #166534;
}

.suspicious {
    background: #fee2e2;
    color: #991b1b;
}

.recommended {
    background: #dbeafe;
    color: #1e40af;
}


/* BUTTONS */
.nav-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

.btn-login {
    border: 1px solid #16a34a;
    background: transparent;
    color: #16a34a;
}

.btn-primary {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    border: none;
}


@media (max-width: 900px) {
    .search-container{
        width: 100%;
        margin-top: 20px;
    }
    .job-card{
        padding: 20px;
        margin: 0;
    }
    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }
}

/* HERO */
.hero {
    padding: 40px 6%;
    text-align: center;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero p {
    color: #6b7280;
}

/* ADSENSE ZONES */
.ad-banner {
    margin: 20px auto;
    max-width: 900px;
    height: 90px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #555;
    border-radius: 6px;
}

.main-layout {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 1px;
    padding: 20px 2%;
}
.medium {
    display: flex;
    flex-direction: column;
    width: 80%;
    padding: 20px 3%;
}

.job-list {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #FFF;
    padding: 10px;
    border-radius: 5px;
}
.me-2{
    color: #16a34a;
    font-size: 16px;
    padding: 0 2px;
}
.data-1{
    color: #007bff;
    font-weight: 700;
}
/* FOOTER */
.footer {
    background: #064e3b;
    color: #ecfdf5;
    padding: 60px 8% 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer a {
    display: block;
    text-decoration: none;
    color: #a7f3d0;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer a:hover {
    color: #ffffff;
}

.footer p {
    font-size: 14px;
    color: #a7f3d0;
}

/* NEWSLETTER */
.newsletter input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
}

.newsletter button {
    width: 100%;
    padding: 10px;
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 5px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #065f46;
    padding-top: 15px;
    font-size: 13px;
    color: #bbf7d0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .search-container{
        font-size: 12px;;
    }
    .search-container h1{
        font-size: 17px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
}
.text-center{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    width: 100%;
    padding: 20px 5%;
}
.row-p{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.job-details li{
    /* list-style: none; */
    margin-left: 30px;
}
h1,h2,h3{
    padding: 5px 0;
}
/* ===============================
   Navbar Responsive Media Query
   Screen Size: 853px × 1280px
================================= */

@media screen and (max-width: 853px) {

    /* Navbar Container */
    .navbar {
        padding: 12px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #ffffff;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
 h1,h2,h3{
        font-size: 16px;
    }
    /* Logo */
    .navbar .logo {
        font-size: 22px;
        font-weight: 700;
    }

    /* Navigation Links */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 260px;
        height: calc(100vh - 70px);
        background: #ffffff;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        transition: 0.4s ease;
        box-shadow: -4px 0 15px rgba(0,0,0,0.08);
    }
     .hamburger {
        display: block;
    }

    /* Active Mobile Menu */
    .nav-links.active {
        right: 0;
    }

    /* Nav Items */
    .nav-links a {
        text-decoration: none;
        color: #222;
        font-size: 16px;
        font-weight: 500;
        transition: 0.3s;
    }

    .nav-links a:hover {
        color: #007bff;
    }

    /* Mobile Menu Icon */
    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #222;
    }

    /* Hide Desktop Button */
    .desktop-btn {
        display: none;
    }
}

/* Desktop View */
@media screen and (min-width: 768px) {
    .search-container{
        margin-top: 20px;
    }


    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 25px;
    }
}

