.idk_paddingbot150 {padding-bottom: 150px;}
.idk_padding50 {padding: 50px 0px;}
.idk_padding10 {padding: 10px 0px;}
.idk_padding20 {padding: 20px 0px;}
.idk_paddingtop100 {padding-top: 100px;}
.idk_paddingtop150 {padding-top: 150px;}
.idk_paddingtop50 {padding-top: 50px;}
.idk_paddingtop30 {padding-top: 30px;}
.idk_paddingtop10 {padding-top: 10px;}
.idk_paddingbot50 {padding-bottom: 50px;}
.idk_paddingbot30 {padding-bottom: 30px;}
.idk_paddingbot10 {padding-bottom: 10px;}
.idk_paddingbot100 {padding-bottom: 100px;}
.idk_paddingbot20 {padding-bottom: 20px;}
.idk_margintop50 {margin-top: 50px;}
.idk_margintop35 {margin-top: 35px;}
.idk_margintop75 {margin-top: 75px;}
.idk_margintop150 {margin-top: 150px;}
.idk_marginbot150 {margin-bottom: 150px;}
.idk_marginbot100 {margin-bottom: 100px;}
.idk_margintop100 {margin-top: 100px;}
.idk_margintop200 {margin-top: 200px;}
.idk_margintop30 {margin-top: 30px;}
.idk_margintop20 {margin-top: 20px;}
.idk_marginbot20 {margin-bottom: 20px;}
.idk_margintop10 {margin-top: 10px;}
.idk_marginbot50 {margin-bottom: 50px;}
.idk_marginbot30 {margin-bottom: 30px;}
.idk_marginbot10 {margin-bottom: 10px;}
.idk_paddingleft32{padding-left: 32px;}

@media (max-width: 768px){
.idk_paddingtop150 {padding-top: 75px;}
.idk_paddingbot150 {padding-bottom: 75px;}
.idk_paddingtop100 {padding-top: 50px;}
.idk_paddingtop50 {padding-top: 25px;}
.idk_paddingtop30 {padding-top: 15px;}
.idk_paddingtop10 {padding-top: 10px;}
.idk_paddingbot50 {padding-bottom: 25px;}
.idk_margintop200 {margin-top: 100px;}
.idk_paddingbot30 {padding-bottom: 15px;}
.idk_paddingbot10 {padding-bottom: 10px;}
.idk_margintop50 {margin-top: 25px;}
.idk_margintop150 {margin-top: 75px;}
.idk_margintop100 {margin-top: 50px;}
.idk_margintop30 {margin-top: 15px;}
.idk_margintop10 {margin-top: 10px;}
.idk_marginbot50 {margin-bottom: 25px;}
.idk_marginbot30 {margin-bottom: 15px;}
.idk_marginbot10 {margin-bottom: 10px;}
.justify-self-end {
  justify-self: end;
}
}





/* Root variables - fonts & colors */

:root {
  --color-primary: #1a73e8;
  --color-secondary: #fbbc05;
  --color-accent: #34a853;

  --font-family-base: "Arial", sans-serif;
}

/*********** base elements reset ***********/
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family-base);
  line-height: 1.5;
  background-color: #fff;
  color: #000;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/******** typography *************/
html {
  font-size: 16px; /* 1rem = 16px */
}

@media (max-width: 768px) {
  html {
    font-size: 14px; /* 1rem = 14px - on phones & tablets */
  }
}

/* clamp(min, preferred, max) */
h1 {
  font-size: 50px;
  font-weight: 700;
  color: white;
}
h2 {
  font-size: clamp(1.75rem, 3vw + 0.8rem, 2.75rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.5rem, 2.5vw + 0.6rem, 2.25rem);
  font-weight: 600;
}
h4 {
  font-size: clamp(1.25rem, 2vw + 0.4rem, 1.75rem);
  font-weight: 500;
}
h5 {
  font-size: clamp(1.125rem, 1.5vw + 0.3rem, 1.5rem);
  font-weight: 500;
}

p {
  font-size: 1rem; /* 16px ako je root 16px */
  font-weight: 400;
}

/********************* utilities - padding, sections *****************/
.idk_section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/*************************** hero section *****************************/
.idk_main_hero_section {
  position: relative;
  width: 100%;
  height: clamp(420px, 60vh, 800px);
  color: #fff;
  overflow: hidden;
}

.idk_hero{
  position: relative;
  height: 640px;
  overflow: hidden;


}
.idk_hero_img{
     position: absolute;
    inset: 0;
    z-index: 1;

}

.idk_hero_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*hero img filter */
.idk_main_hero_section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #8c4fd699 0%,
    #5b2fb0cc 60%,
    #2d1766e6 100%
  );
  z-index: 1;
}

.idk_main_hero_content_wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.idk_main_hero_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.idk_photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}


.idk_btn{
  padding: 8px 24px;
  width: fit-content;
  background-color: #D4AF37;
  text-align: center;
  border-radius: 4px;
  border: 2px solid #D4AF37;

}

.idk_btn:hover
{
  background-color: white;
  border: 2px solid #D4AF37;
}

.idk_btn:hover {color: #D4AF37;}
.idk_btn1:hover {color: white !important;}


.idk_btn1{
  padding: 8px 24px;
  background-color: white;
  text-align: center;
  border-radius: 4px;
  border: 2px solid #1E3A5F;

}

.idk_btn1 , .idk_btn1:visited{
  color: #1E3A5F;
}

.idk_btn1:hover
{
  background-color: #1E3A5F;
}
a, a:visited{
  color: white;
  text-decoration: none;

}
header{
  padding: 25px 0px;
  
}

.idk_btn_wrap{
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
}

.idk_arrow {
    width: 16px;
    height: 16px;
    background: url("../images/strelica.svg") no-repeat center;
    background-size: contain;
    transition: background-image 0.2s ease;
}

.idk_btn:hover .idk_arrow {
    background-image: url("../images/strelica2.svg");
}

.idk_btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* CONTAINER PREKO SLIKE */
.idk_hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center; /* ✅ VERTIKALNO CENTRIRANJE */
}


.idk_hero p{
  color: #E5E7EB;
}

.idk_hero_content{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.idk_naslov{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.idk_naslov h3{
  color: #1E3A5F;
  font-size: 36px;
  font-weight: bold;
}

.idk_naslov h6{
  color: #4A5565;
  font-size: 18px;
}

.idk_card {
    position: relative; /* ⬅️ REFERENCA ZA KRUG */
    background: #fff;
    width: 95%;
    border-radius: 16px;
    padding: 40px 30px 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* KRUG */
.idk_krug {
    position: absolute;
    top: -18px;     /* ⬅️ izlazi malo van kartice */
    left: -18px;
    width: 44px;    /* prilagodi krug SVG-u */
    height: 44px;
    z-index: 2;
}

.idk_card_content{
  display: flex;
  flex-direction: column;
  gap: 12px;

}

.idk_card h5{
  color: #1E3A5F;
  font-size: 20px;
  font-weight: bold;

}

.idk_card_content p{
  color: #4A5565;
}
.idk_card1 h5{
  color: #1E3A5F;
  font-size: 20px;
  font-weight: bold;

}

.idk_card_wrapper p{
  color: #4A5565;
}
.idk_krug {
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.idk_card1{
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 25px;
  width: 100%;
  border-radius: 14px;
  box-shadow:
    0px 2px 4px -2px rgba(0, 0, 0, 0.1),
    0px 4px 6px -1px rgba(0, 0, 0, 0.2);
  align-items: center;
}

.idk_card1:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0px 6px 14px -4px rgba(0,0,0,0.12),
        0px 10px 20px -6px rgba(0,0,0,0.12);
}

/* ikona */
.idk_card1 img {
    transition: transform 0.25s ease;
}

.idk_card1:hover img {
    transform: scale(1.1);
}
.idk_card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0px 6px 14px -4px rgba(0,0,0,0.12),
        0px 10px 20px -6px rgba(0,0,0,0.12);
}

/* ikona */
.idk_card img {
    transition: transform 0.25s ease;
}

.idk_card:hover img {
    transform: scale(1.1);
}

.idk_btn_lng{
  width: 100%;
  border-radius: 14px;
  background-color: #1E3A5F;
  padding: 25px 0px;
  text-align: center;
  border: 1px solid #1E3A5F;
}

.idk_btn_lng p{
  margin-bottom: 0px;
}

.idk_btn_lng:hover{
  border: 1px solid #1E3A5F;
  background-color: white;

}
.idk_btn_lng:hover p{
  color: #1E3A5F;
}


.idk_form_card{
  background:#fff;
  border-radius:18px;
  padding:28px;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow: 0px 2px 4px -2px rgba(0,0,0,0.1), 0px 4px 6px -1px rgba(0,0,0,0.1);
}

.idk_label{
  font-weight:600;
  font-size:14px;
  color:#1f2d3d;
  margin-bottom:8px;
  display:block;
}
.idk_label span{ color:#d02b2b; }

.idk_input,
.idk_select,
.idk_textarea{
  background:#f5f6f8;
  border:1px solid transparent;
  border-radius:10px;
  padding:12px 14px;
  font-size:14px;
}

.idk_input:focus,
.idk_select:focus,
.idk_textarea:focus{
  background:#fff;
  border-color: rgba(13,110,253,0.35);
  box-shadow:none;
}

.idk_info{
  margin-top:10px;
  padding:12px 14px;
  border-radius:12px;
  background: rgba(13,110,253,0.08);
  color:#1f2d3d;
  font-size:13px;
  border:1px solid rgba(13,110,253,0.15);
}

.idk_check{
  display:flex;
  align-items:center;
  gap:10px;
  user-select:none;
  font-size:14px;
  color:#1f2d3d;
}
.idk_check input{
  width:16px;
  height:16px;
}

.idk_upload{
  position:relative;
  border:2px solid rgba(31,45,61,0.12);
  border-radius:14px;
  background:#fff;
  padding:18px;
  cursor:pointer;
}
.idk_file{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}
.idk_upload_inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:86px;
}
.idk_upload_icon{
  width:36px;
  height:36px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f5f6f8;
  font-size:18px;
}
.idk_upload_text{
  font-size:13px;
  color:#667085;
}

.idk_error{
  margin-top:8px;
  color:#d02b2b;
  font-size:13px;
}

.idk_counter{
  margin-top:8px;
  text-align:right;
  font-size:12px;
  color:#667085;
}

.idk_gdpr{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 14px;
  border-radius:12px;
  background:#f5f6f8;
  border:1px solid rgba(0,0,0,0.06);
  font-size:13px;
  color:#1f2d3d;
}
.idk_gdpr input{
  width:16px;
  height:16px;
  margin-top:3px;
}

.idk_submit_btn{
  background:#D4AF37;
  border:none;
  color:#fff;
  padding:14px 18px;
  font-weight:700;
  border-radius:12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.idk_submit_btn:hover{
  transform: translateY(-2px);
  box-shadow: 0px 10px 22px rgba(0,0,0,0.16);
  color:#D4AF37;
}

.idk_success{
  margin-top:10px;
  padding:14px 16px;
  border-radius:12px;
  background: rgba(25,135,84,0.10);
  border:1px solid rgba(25,135,84,0.18);
  color:#1f2d3d;
  font-size:14px;
}

.idk_naslov img{
  width: 60px;
  height: 60px;
}

.idk_naslov{
  justify-content: center;
  align-items: center;
}

.idk_bg{
  background-color: #F9FAFB;
}

/* BUTTON DARK VARIANT (poslodavci) */
.idk_submit_btn--dark{
  background:#1f3b5d; /* tamno plava kao na screenshotu */
}
.idk_submit_btn--dark:hover{
  background:#19314d;
  color:#fff;
}

.idk_footer_logo{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.idk_footer_logo img{
  width: 130px;
  height: 30px;
}

.idk_footer_item{
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

footer{
  background-color: #1E3A5F;
  padding: 50px 0px 30px 0px;
}

footer h5{
  color: white;
  padding-bottom: 21px;
  font-size: 18px;
  font-weight: bold;
}
footer p, footer a{
  color: #D1D5DC;
}

header img{
  width: 180px;
  height: 55px;
}

@media (max-width: 768px){

  .idk_btn_wrap{
    margin-top: 20px;
  }

  .idk_card{
    width: 100%;
    margin-bottom: 30px;
  }
  

  .idk_card1{
    margin-bottom: 20px;
  }

  footer .col-lg-4, footer .col-lg-3{
    margin-bottom: 50px;
  }

  h1{
    font-size: 42px;
  }
}

.idk_footer_item img{
  width: 20px;
  height: 20px;
}


.idk_footer_wrap{
  display: flex;
  flex-direction: column;
  gap: 15px;
}






















































/****************** slick styles *************************/

.slick-slide {
  margin: 0 15px;
}

/* the parent */
.slick-list {
  margin: 0 -15px;
}

#lightcase-nav a {
  color: #ffffff !important;
}

a.lightcase-icon-close {
  color: #ffffff !important;
}

/* IDK Menu Start */
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

#cssmenu #menu-button {
  display: none;
}

#cssmenu {
  background: #333333;
}

#cssmenu > ul > li {
  float: left;
}

#cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}

#cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}

#cssmenu.align-center ul ul {
  text-align: left;
}

#cssmenu.align-right > ul > li {
  float: right;
}

#cssmenu > ul > li > a {
  padding: 17px;
  font-size: 12px;
  text-decoration: none;
  color: #dddddd;
  text-transform: uppercase;
}

#cssmenu > ul > li:hover > a {
  color: #ffffff;
}

#cssmenu > ul > li.has-sub > a {
  padding-right: 30px;
}

#cssmenu > ul > li.has-sub > a:after {
  position: absolute;
  top: 22px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #dddddd;
  content: "";
}

#cssmenu > ul > li.has-sub > a:before {
  position: absolute;
  top: 19px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #dddddd;
  content: "";
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#cssmenu > ul > li.has-sub:hover > a:before {
  top: 23px;
  height: 0;
}

#cssmenu ul ul {
  position: absolute;
  left: -9999px;
}

#cssmenu.align-right ul ul {
  text-align: right;
}

#cssmenu ul ul li {
  height: 0;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#cssmenu li:hover > ul {
  left: auto;
}

#cssmenu.align-right li:hover > ul {
  left: auto;
  right: 0;
}

#cssmenu li:hover > ul > li {
  height: 35px;
}

#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}

#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}

#cssmenu ul ul li a {
  border-bottom: 1px solid rgba(150, 150, 150, 0.15);
  padding: 11px 15px;
  width: 170px;
  font-size: 12px;
  text-decoration: none;
  color: #dddddd;
  font-weight: 400;
  background: #333333;
}

#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last-item > a {
  border-bottom: 0;
}

#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #ffffff;
}

#cssmenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #dddddd;
  content: "";
}

#cssmenu.align-right ul ul li.has-sub > a:after {
  right: auto;
  left: 11px;
}

#cssmenu ul ul li.has-sub > a:before {
  position: absolute;
  top: 13px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #dddddd;
  content: "";
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#cssmenu.align-right ul ul li.has-sub > a:before {
  right: auto;
  left: 14px;
}

#cssmenu ul ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}

@media all and (max-width: 768px),
  only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px),
  only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px),
  only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px),
  only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px),
  only screen and (min-resolution: 192dpi) and (max-width: 1024px),
  only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  #cssmenu {
    width: 100%;
  }

  #cssmenu ul {
    width: 100%;
    display: none;
  }

  #cssmenu.align-center > ul {
    text-align: left;
  }

  #cssmenu ul li {
    width: 100%;
    border-top: 1px solid rgba(120, 120, 120, 0.2);
  }

  #cssmenu ul ul li,
  #cssmenu li:hover > ul > li {
    height: auto;
  }

  #cssmenu ul li a,
  #cssmenu ul ul li a {
    width: 100%;
    border-bottom: 0;
  }

  #cssmenu > ul > li {
    float: none;
  }

  #cssmenu ul ul li a {
    padding-left: 25px;
  }

  #cssmenu ul ul ul li a {
    padding-left: 35px;
  }

  #cssmenu ul ul li a {
    color: #dddddd;
    background: none;
  }

  #cssmenu ul ul li:hover > a,
  #cssmenu ul ul li.active > a {
    color: #ffffff;
  }

  #cssmenu ul ul,
  #cssmenu ul ul ul,
  #cssmenu.align-right ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  #cssmenu > ul > li.has-sub > a:after,
  #cssmenu > ul > li.has-sub > a:before,
  #cssmenu ul ul > li.has-sub > a:after,
  #cssmenu ul ul > li.has-sub > a:before {
    display: none;
  }

  #cssmenu #menu-button {
    display: block;
    padding: 17px;
    color: #dddddd;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
  }

  #cssmenu #menu-button:after {
    position: absolute;
    top: 22px;
    right: 17px;
    display: block;
    height: 8px;
    width: 20px;
    border-top: 2px solid #dddddd;
    border-bottom: 2px solid #dddddd;
    content: "";
  }

  #cssmenu #menu-button:before {
    position: absolute;
    top: 16px;
    right: 17px;
    display: block;
    height: 2px;
    width: 20px;
    background: #dddddd;
    content: "";
  }

  #cssmenu #menu-button.menu-opened:after {
    top: 23px;
    border: 0;
    height: 2px;
    width: 15px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #cssmenu #menu-button.menu-opened:before {
    top: 23px;
    background: #ffffff;
    width: 15px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #cssmenu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(120, 120, 120, 0.2);
    height: 46px;
    width: 46px;
    cursor: pointer;
  }

  #cssmenu .submenu-button.submenu-opened {
    background: #262626;
  }

  #cssmenu ul ul .submenu-button {
    height: 34px;
    width: 34px;
  }

  #cssmenu .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #dddddd;
    content: "";
  }

  #cssmenu ul ul .submenu-button:after {
    top: 15px;
    right: 13px;
  }

  #cssmenu .submenu-button.submenu-opened:after {
    background: #ffffff;
  }

  #cssmenu .submenu-button:before {
    position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #dddddd;
    content: "";
  }

  #cssmenu ul ul .submenu-button:before {
    top: 12px;
    right: 16px;
  }

  #cssmenu .submenu-button.submenu-opened:before {
    display: none;
  }
}

/* IDK Menu End */

@media (max-width: 1200px) {
}
