/*
Theme Name: NCRJOB Custom Theme
Author: OpenAI
Version: 1.0
*/

*{margin:0;padding:0;box-sizing:border-box}

body{
font-family:Arial,sans-serif;
background:#f3f3f3;
color:#111;
}

.container{
max-width:1400px;
margin:auto;
padding:0 15px;
}

img{max-width:100%;height:auto}

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

.top-header{
background:#fff;
padding:15px 0;
border-bottom:1px solid #ddd;
position:sticky;
top:0;
z-index:999;
}

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.logo{
font-size:28px;
font-weight:700;
color:#d10000;
}

.main-menu ul{
display:flex;
gap:20px;
list-style:none;
}

.main-menu a{
font-size:14px;
font-weight:600;
}

.search-bar{
background:#7200ff;
padding:18px 0;
}

.search-form{
display:flex;
gap:10px;
}

.search-form input{
flex:1;
height:50px;
padding:0 15px;
border:none;
border-radius:5px;
}

.search-form button{
width:140px;
border:none;
background:#00c853;
color:#fff;
font-weight:700;
border-radius:5px;
cursor:pointer;
}

.hero-categories{
padding:30px 0;
background:#fff;
}

.hero-categories{
    padding:20px 0;
    background:#fff;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
}

.category-box{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:18px 12px;
    text-align:center;
    text-decoration:none;
    transition:0.3s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-height:190px;
}

.category-box:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.category-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 14px;
}

.category-box h3{
    font-size:18px;
    line-height:1.3;
    font-weight:700;
    color:#000;
    margin:0;
}

/* ======================
TABLET
====================== */

@media(max-width:1024px){

.category-grid{
    grid-template-columns:repeat(3,1fr);
}

}

/* ======================
MOBILE
====================== */

@media(max-width:768px){

.category-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.category-box{
    min-height:150px;
    padding:14px 10px;
}

.category-box img{
    width:85px;
    height:85px;
    margin-bottom:10px;
}

.category-box h3{
    font-size:15px;
}

}
.jobs-section{
padding:40px 0;
}

.jobs-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.jobs-column{
background:#fff;
border:1px solid #ddd;
}

.jobs-column h2{
background:#009688;
color:#fff;
padding:14px;
font-size:18px;
}

.job-item{
padding:12px 15px;
border-bottom:1px solid #eee;
}

.job-item a{
font-size:15px;
line-height:1.5;
}

.job-item span{
color:red;
font-weight:700;
}

.footer{
background:#dfe3e8;
padding:50px 0 20px;
margin-top:40px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:30px;
}

.footer ul{
list-style:none;
}

.footer li{
margin-bottom:10px;
}

.footer-bottom{
margin-top:30px;
padding-top:20px;
border-top:1px solid #bbb;
text-align:center;
}

@media(max-width:991px){

.jobs-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
}
}

@media(max-width:768px){

.header-flex{
flex-direction:column;
}

.main-menu ul{
flex-wrap:wrap;
justify-content:center;
}



.search-form{
flex-direction:column;
}

.search-form button{
width:100%;
height:50px;
}

}

	.gb-container-1764776b {
    position: relative;
    margin: 5px 3px 3px;
}


.gb-container-f3bf61db,
.gb-container-9e5635a7{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;

    padding:10px 14px;
    margin-top:10px;
    margin-bottom:10px;

    border-radius:4px;
    border:1.5px solid #cfe5f3;

    background:#eaf6ff;
}

/* =========================
ICON + HEADING
========================= */

h2.gb-headline-a5d4a0c6,
h2.gb-headline-1a04e78c{
    display:flex;
    align-items:center;
    gap:10px;

    font-size:18px;
    font-weight:600;

    margin:0;
}

/* SAME ICON SIZE */

h2.gb-headline-a5d4a0c6 .gb-icon,
h2.gb-headline-1a04e78c .gb-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:32px;
    height:32px;

    min-width:32px;
}

/* SAME SVG SIZE */

h2.gb-headline-a5d4a0c6 .gb-icon svg,
h2.gb-headline-1a04e78c .gb-icon svg{
    width:22px;
    height:22px;
}

/* ICON COLORS */

h2.gb-headline-a5d4a0c6 .gb-icon{
    color:#34aae2;
}

h2.gb-headline-1a04e78c .gb-icon{
    color:#2cb641;
}

/* =========================
BUTTONS
========================= */

a.gb-button-c8bfe827,
a.gb-button-e815a396{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:110px;
    height:42px;

    padding:0 18px;

    border-radius:4px;

   
    color:#fff !important;

    font-size:14px;
    font-weight:700;

    text-decoration:none;

    border:1px solid #dcdcdc;

    transition:0.3s ease;
}

.gb-button-e815a396{
	background:#60E684;
}

.gb-button-c8bfe827{
	background:#20A8E7;
}


/* HOVER */

a.gb-button-c8bfe827:hover,
a.gb-button-e815a396:hover{
    background:#111;
    color:#fff !important;
}

/* =========================
ANIMATION
========================= */

.telegramhighlight{
    animation:WPLiteTheme-BlueBorderAnimation 1s infinite;
}
.gb-container-2a8efbac{
	padding:0 10px;
}
/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

.gb-container-f3bf61db,
.gb-container-9e5635a7{
    padding:10px;
    gap:10px;
}

h2.gb-headline-a5d4a0c6,
h2.gb-headline-1a04e78c{
    font-size:16px;
}

a.gb-button-c8bfe827,
a.gb-button-e815a396{
    min-width:90px;
    height:38px;
    font-size:13px;
    padding:0 12px;
}

}
.new-label{
    display:inline-block;

    color:#ff0000;
    font-weight:700;

    margin-left:6px;

    animation:newBlink 1s infinite;
}

/* =========================
BLINK + SCALE ANIMATION
========================= */

@keyframes newBlink{

    0%{
        opacity:1;
        transform:scale(1);
        color:#ff0000;
    }

    25%{
        opacity:.4;
        transform:scale(1.08);
        color:#ff3b3b;
    }

    50%{
        opacity:1;
        transform:scale(1);
        color:#ff0000;
    }

    75%{
        opacity:.5;
        transform:scale(1.08);
        color:#ff6b6b;
    }

    100%{
        opacity:1;
        transform:scale(1);
        color:#ff0000;
    }

}