body {
    background-color: #11151a;
}

* {
    -webkit-tap-highlight-color: transparent;
}


.banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0%;
    transition: transform 0.5s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.search-container {
    position: relative;
    z-index: 2;
    width: 38%;
    margin: 0 auto;
    top: 160px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.input-group {
    display: flex;
    gap: 12px;
}

.search-input {
    flex: 1;
    height: 52px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 0 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-button {
    height: 52px;
    padding: 0 28px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



.featured-jobs {
    width: 100%;
    position: relative;   
    margin-top: 120px;    
    padding: 60px 0;
}


.featured-jobs h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: #fff;
    margin-left: 17%;
    margin-bottom: 40px;
}

/* FLEX CONTAINER */
.jobs-container {
    width: 66%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* HER ZAMAN 3 TANE */
.job-card {
    width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
}


/* TEXT */
.job-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.job-card .company {
    position: relative;
    font-size: 14px;
    color: #777;
    top: 0px;
    left: 0%;
}

.job-card .location {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #333;
}


.footer {
    position: absolute;
    top: 1400px;
    left: 0%;
}


/*RESPONSIVE*/
@media (min-width: 240px) and (max-width: 359.98px) and (orientation: portrait)  {
body {
    background-color: #11151a;
}

.banner {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0%;
    transition: transform 0.5s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.search-container {
    position: relative;
    z-index: 2;
    width: 64%;
    margin: 0 auto;
    top: 100px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 20px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.input-group {
    display: block;
    gap: 0px;
}

.search-input {
    height: 36px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 10px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    width: 170px;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-button {
    margin-top: 10px;
    height: 36px;
    padding: 0 20px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



.featured-jobs {
    width: 100%;
    position: relative;   
    margin-top: 20px;    
    padding: 60px 0;
}


.featured-jobs h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    color: #fff;
    margin-left: 6%;
    margin-bottom: 40px;
}

/* FLEX CONTAINER */
.jobs-container {
    width: 88%;
    margin: 0 auto;
    display: flex;
    gap: 27px;
    flex-wrap: wrap;
}

/* JOB CARD */
.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;

    flex: 0 0 calc(50% - 14px);
    max-width: calc(50% - 14px);

    box-shadow: 0 0px 0px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
}


/* TEXT */
.job-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #222;
    margin-bottom: 10px;
}

.job-card .company {
    position: relative;
    font-size: 10px;
    color: #777;
    top: 0px;
    left: 0%;
}

.job-card .location {
    font-size: 10px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 5px 28px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #333;
}


.mobile-footer {
    position: absolute;
    top: 1600px;
    left: 0%;
}  
}
  
@media (min-width: 360px) and (max-width: 575.98px) and (orientation: portrait) {
body {
    background-color: #11151a;
}

.banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0%;
    transition: transform 0.5s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.search-container {
    position: relative;
    z-index: 2;
    width: 64%;
    margin: 0 auto;
    top: 100px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 20px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.input-group {
    display: block;
    gap: 0px;
}

.search-input {
    height: 52px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    width: 200px;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-button {
    margin-top: 10px;
    height: 52px;
    padding: 0 20px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



.featured-jobs {
    width: 100%;
    position: relative;   
    margin-top: 20px;    
    padding: 60px 0;
}


.featured-jobs h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-left: 6%;
    margin-bottom: 40px;
}

/* FLEX CONTAINER */
.jobs-container {
    width: 88%;
    margin: 0 auto;
    display: flex;
    gap: 27px;
    flex-wrap: wrap;
}

/* JOB CARD */
.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;

    flex: 0 0 calc(50% - 14px);
    max-width: calc(50% - 14px);

    box-shadow: 0 0px 0px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
}


/* TEXT */
.job-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.job-card .company {
    position: relative;
    font-size: 14px;
    color: #777;
    top: 0px;
    left: 0%;
}

.job-card .location {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #333;
}


.mobile-footer {
    position: absolute;
    top: 1600px;
    left: 0%;
}
}

@media (min-width: 576px) and (max-width: 767.98px) and (orientation: portrait)  {
body {
    background-color: #11151a;
}

.banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0%;
    transition: transform 0.5s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.search-container {
    position: relative;
    z-index: 2;
    width: 64%;
    margin: 0 auto;
    top: 100px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 20px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.input-group {
    display: block;
    gap: 0px;
}

.search-input {
    height: 52px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    width: 200px;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-button {
    margin-top: 10px;
    height: 52px;
    padding: 0 20px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



.featured-jobs {
    width: 100%;
    position: relative;   
    margin-top: 20px;    
    padding: 60px 0;
}


.featured-jobs h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-left: 6%;
    margin-bottom: 40px;
}

/* FLEX CONTAINER */
.jobs-container {
    width: 88%;
    margin: 0 auto;
    display: flex;
    gap: 27px;
    flex-wrap: wrap;
}

/* JOB CARD */
.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;

    flex: 0 0 calc(50% - 14px);
    max-width: calc(50% - 14px);

    box-shadow: 0 0px 0px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
}


/* TEXT */
.job-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.job-card .company {
    position: relative;
    font-size: 14px;
    color: #777;
    top: 0px;
    left: 0%;
}

.job-card .location {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #333;
}


.mobile-footer {
    position: absolute;
    top: 1600px;
    left: 0%;
}
}
     
@media  (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {
body {
    background-color: #11151a;
}

.banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0%;
    transition: transform 0.5s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.search-container {
    position: relative;
    z-index: 2;
    width: 64%;
    margin: 0 auto;
    top: 100px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 20px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.input-group {
    display: block;
    gap: 0px;
}

.search-input {
    height: 52px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    width: 200px;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-button {
    margin-top: 10px;
    height: 52px;
    padding: 0 20px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



.featured-jobs {
    width: 100%;
    position: relative;   
    margin-top: 20px;    
    padding: 60px 0;
}


.featured-jobs h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-left: 6%;
    margin-bottom: 40px;
}

/* FLEX CONTAINER */
.jobs-container {
    width: 88%;
    margin: 0 auto;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* JOB CARD */
.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-sizing: border-box;

    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);

    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-8px);
}


/* TEXT */
.job-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.job-card .company {
    position: relative;
    font-size: 14px;
    color: #777;
    top: 0px;
    left: 0%;
}

.job-card .location {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #333;
}


.mobile-footer {
    position: absolute;
    top: 1600px;
    left: 0%;
}
}
     
@media (min-width: 992px) and (max-width: 1199.98px) and (orientation: portrait)  {
body {
    background-color: #11151a;
}

.banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0%;
    transition: transform 0.5s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.search-container {
    position: relative;
    z-index: 2;
    width: 50%;
    margin: 0 auto;
    top: 150px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 20px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.input-group {
    display: block;
    gap: 0px;
}

.search-input {
    height: 52px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    width: 290px;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-button {
    margin-top: 10px;
    height: 52px;
    padding: 0 20px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



.featured-jobs {
    width: 100%;
    position: relative;   
    margin-top: 20px;    
    padding: 60px 0;
}


.featured-jobs h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-left: 6%;
    margin-bottom: 40px;
}

/* FLEX CONTAINER */
.jobs-container {
    width: 88%;
    margin: 0 auto;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* JOB CARD */
.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-sizing: border-box;

    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);

    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-8px);
}


/* TEXT */
.job-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
}

.job-card .company {
    position: relative;
    font-size: 16px;
    color: #777;
    top: 0px;
    left: 0%;
}

.job-card .location {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #333;
}


.mobile-footer {
    position: absolute;
    top: 1600px;
    left: 0%;
}
}

@media  (min-width: 1200px) and (max-width: 1399.98px)  {
body {
    background-color: #11151a;
}

.banner {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0%;
    transition: transform 0.5s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.search-container {
    position: relative;
    z-index: 2;
    width: 38%;
    margin: 0 auto;
    top: 100px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.input-group {
    display: flex;
    gap: 12px;
}

.search-input {
    flex: 1;
    height: 45px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 0 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-button {
    height: 45px;
    padding: 0 28px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



.featured-jobs {
    width: 100%;
    position: relative;   
    margin-top: 120px;    
    padding: 60px 0;
}


.featured-jobs h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-left: 17%;
    margin-bottom: 40px;
}

/* FLEX CONTAINER */
.jobs-container {
    width: 66%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* HER ZAMAN 3 TANE */
.job-card {
    width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
}


/* TEXT */
.job-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.job-card .company {
    position: relative;
    font-size: 14px;
    color: #777;
    top: 0px;
    left: 0%;
}

.job-card .location {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #333;
}


.footer {
    position: absolute;
    top: 1400px;
    left: 0%;
}
  
}
     
@media  (min-width: 1400px) and (max-width: 1599.98px)  {
body {
    background-color: #11151a;
}

.banner {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0%;
    transition: transform 0.5s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.search-container {
    position: relative;
    z-index: 2;
    width: 38%;
    margin: 0 auto;
    top: 160px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.input-group {
    display: flex;
    gap: 12px;
}

.search-input {
    flex: 1;
    height: 52px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 0 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-button {
    height: 52px;
    padding: 0 28px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



.featured-jobs {
    width: 100%;
    position: relative;   
    margin-top: 120px;    
    padding: 60px 0;
}


.featured-jobs h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    color: #fff;
    margin-left: 17%;
    margin-bottom: 40px;
}

/* FLEX CONTAINER */
.jobs-container {
    width: 66%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* HER ZAMAN 3 TANE */
.job-card {
    width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
}


/* TEXT */
.job-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.job-card .company {
    position: relative;
    font-size: 14px;
    color: #777;
    top: 0px;
    left: 0%;
}

.job-card .location {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #333;
}


.footer {
    position: absolute;
    top: 1400px;
    left: 0%;
}
     
}
     



/* LANDSCAPE RESPONSIVE*/
@media (min-width: 500px) and (max-width: 639.98px) and (orientation: landscape) {
body {
    background-color: #11151a;
}

.banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0%;
    transition: transform 0.5s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.search-container {
    position: relative;
    z-index: 2;
    width: 64%;
    margin: 0 auto;
    top: 100px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 20px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.input-group {
    display: block;
    gap: 0px;
}

.search-input {
    height: 52px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    width: 200px;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-button {
    margin-top: 10px;
    height: 52px;
    padding: 0 20px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



.featured-jobs {
    width: 100%;
    position: relative;   
    margin-top: 20px;    
    padding: 60px 0;
}


.featured-jobs h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-left: 6%;
    margin-bottom: 40px;
}

/* FLEX CONTAINER */
.jobs-container {
    width: 88%;
    margin: 0 auto;
    display: flex;
    gap: 27px;
    flex-wrap: wrap;
}

/* JOB CARD */
.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;

    flex: 0 0 calc(50% - 14px);
    max-width: calc(50% - 14px);

    box-shadow: 0 0px 0px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
}


/* TEXT */
.job-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.job-card .company {
    position: relative;
    font-size: 14px;
    color: #777;
    top: 0px;
    left: 0%;
}

.job-card .location {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #333;
}


.mobile-footer {
    position: absolute;
    top: 1600px;
    left: 0%;
}
}

@media (min-width: 640px) and (max-width: 811.98px) and (orientation: landscape) {
body {
    background-color: #11151a;
}

.banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0%;
    transition: transform 0.5s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.search-container {
    position: relative;
    z-index: 2;
    width: 64%;
    margin: 0 auto;
    top: 100px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 20px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.input-group {
    display: block;
    gap: 0px;
}

.search-input {
    height: 52px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    width: 200px;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-button {
    margin-top: 10px;
    height: 52px;
    padding: 0 20px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



.featured-jobs {
    width: 100%;
    position: relative;   
    margin-top: 20px;    
    padding: 60px 0;
}


.featured-jobs h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-left: 6%;
    margin-bottom: 40px;
}

/* FLEX CONTAINER */
.jobs-container {
    width: 88%;
    margin: 0 auto;
    display: flex;
    gap: 27px;
    flex-wrap: wrap;
}

/* JOB CARD */
.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;

    flex: 0 0 calc(50% - 14px);
    max-width: calc(50% - 14px);

    box-shadow: 0 0px 0px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
}


/* TEXT */
.job-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.job-card .company {
    position: relative;
    font-size: 14px;
    color: #777;
    top: 0px;
    left: 0%;
}

.job-card .location {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #333;
}


.mobile-footer {
    position: absolute;
    top: 1600px;
    left: 0%;
}
}

@media (min-width: 812px) and (max-width: 999.98px) and (orientation: landscape) {
body {
    background-color: #11151a;
}

.banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0%;
    transition: transform 0.5s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.search-container {
    position: relative;
    z-index: 2;
    width: 64%;
    margin: 0 auto;
    top: 100px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 20px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.input-group {
    display: block;
    gap: 0px;
}

.search-input {
    height: 52px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    width: 200px;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-button {
    margin-top: 10px;
    height: 52px;
    padding: 0 20px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



.featured-jobs {
    width: 100%;
    position: relative;   
    margin-top: 20px;    
    padding: 60px 0;
}


.featured-jobs h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-left: 6%;
    margin-bottom: 40px;
}

/* FLEX CONTAINER */
.jobs-container {
    width: 88%;
    margin: 0 auto;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* JOB CARD */
.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-sizing: border-box;

    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);

    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-8px);
}


/* TEXT */
.job-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.job-card .company {
    position: relative;
    font-size: 14px;
    color: #777;
    top: 0px;
    left: 0%;
}

.job-card .location {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #333;
}


.mobile-footer {
    position: absolute;
    top: 1600px;
    left: 0%;
}
}

@media (min-width: 1000px) and (max-width: 1200px) and (orientation: landscape) {
body {
    background-color: #11151a;
}

.banner {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0%;
    transition: transform 0.5s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.search-container {
    position: relative;
    z-index: 2;
    width: 50%;
    margin: 0 auto;
    top: 150px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 20px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.input-group {
    display: block;
    gap: 0px;
}

.search-input {
    height: 52px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    width: 290px;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.search-button {
    margin-top: 10px;
    height: 52px;
    padding: 0 20px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}



.featured-jobs {
    width: 100%;
    position: relative;   
    margin-top: 20px;    
    padding: 60px 0;
}


.featured-jobs h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-left: 6%;
    margin-bottom: 40px;
}

/* FLEX CONTAINER */
.jobs-container {
    width: 88%;
    margin: 0 auto;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* JOB CARD */
.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-sizing: border-box;

    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);

    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-8px);
}


/* TEXT */
.job-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
}

.job-card .company {
    position: relative;
    font-size: 16px;
    color: #777;
    top: 0px;
    left: 0%;
}

.job-card .location {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #333;
}


.mobile-footer {
    position: absolute;
    top: 1600px;
    left: 0%;
}
}