.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_paddingtop75 {padding-top: 75px;}
.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_paddingbot16 {padding-bottom: 16px;}
.idk_paddingbot100 {padding-bottom: 100px;}
.idk_paddingbot20 {padding-bottom: 20px;}
.idk_margintop50 {margin-top: 50px;}
.idk_margintop40 {margin-top: 40px;}
.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;}
.idk_margintop30r{margin-top: 30px;}
.idk_margintop50r{margin-top: 50px;}
.idk_margintop10r{margin-top: 10px;}
.justify-self-end {
  justify-self: end;
}
}






/* Root variables - fonts & colors */

:root {
  --color-primary: #1a73e8;
  --color-secondary: #fbbc05;
  --color-accent: #34a853;

  --font-family-base: "Inter", 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: clamp(2rem, 4vw + 1rem, 3.5rem);
  font-weight: 700;
}
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: 680px;
  color: #fff;
  overflow: hidden;
}

.idk_hero_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/*hero img filter */
.idk_main_hero_section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    #244E7F 100%
);
  z-index: 1;
}

.idk_main_hero_content_wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: left;
  align-items: end;
  z-index: 2;
}
.idk_main_hero_content_wrapper1 {
  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: left;
}

.idk_photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.idk_btn{
  background-color: #DE4037;
  border-radius: 2px;
  padding: 15px 50px;
  width: fit-content;
  align-items: center;
  text-align: center;
  display: block;
}
.idk_btn1{
  border-radius: 2px;
  border: 2px solid white;
  padding: 15px 0px;
  width: 240px;
  align-items: center;
  text-align: center;
  display: block;
}

a, a:visited{
  color: white;
  text-decoration: none;
}

.idk_btn_wrapper{
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.idk_btn:hover{
  background-color: #E99A95;
}
.idk_btn1:hover{
  color: #DE4037;
  border: 2px solid #DE4037;
}

.idk_clip_section{
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  background-color: #244E7F;
}
.idk_clip_section2{

  background-color: #244E7F;
}
.idk_clip_section5{

  background-color: #244E7F;
}

.idk_card{
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  width: 100%;
  height: 220px;
  padding: 25px 60px; 
  background: linear-gradient(
    180deg,
    #185481 0%,
    #244E7F 100%
);
  transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.idk_card h5{
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}

.idk_card p{
  color: rgba(255, 255, 255, 0.75);
}

.idk_card:hover {
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(-6px) scale(1.03);
}

.idk_naslov{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

h6{
  font-size: 16px;
  font-weight: bold;
  color: #004274;
}

h3{
  font-size: 40px;
  font-weight: bold;
}



.idk_main_hero_content p{
  text-transform: uppercase;

}

.idk_img{
  width: 100%;
  height: 100%;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
}
.idk_img1{
  width: 100%;
  height: 280px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
}
.idk_img2{
  width: 100%;
  height: 280px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
}

.idk_img img{
  border-radius: 2px;
  width: 100%;
  height: 100%;
}
.idk_img1 img{
  border-radius: 2px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idk_img2 img{
  border-radius: 2px;
  width: 100%;
  height: 100%;
}


.idk_clip_section1 {
    position: relative;
    clip-path: polygon(
        0 10%, 
        100% 0, 
        100% 100%, 
        0 100%
    );
    background-color: #244E7F;
    padding-top: 150px;
    padding-bottom: 150px;
    overflow: hidden;
}

/* background slika */
.idk_clip_section1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/bg-section.png") center / cover no-repeat;
    opacity: 0.10;               /* 👈 10% */
    z-index: 1;
}

/* sadržaj iznad svega */
.idk_clip_section1 > * {
    position: relative;
    z-index: 2;
}


.idk_clip_section1 h6{
  color: white;
}
.idk_clip_section1 h3{
  color: white;
}
.idk_clip_section1 p{
  color: white;
}





.idk_clip_section4 {
    position: relative;
    background-color: #244E7F;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

/* background slika */
.idk_clip_section4::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/pozadina.png") center / cover no-repeat;
    opacity: 0.10;               /* 👈 10% */
    z-index: 1;
}

/* sadržaj iznad svega */
.idk_clip_section4 > * {
    position: relative;
    z-index: 2;
}


.idk_clip_section4 h6{
  color: white;
}
.idk_clip_section4 h3{
  color: white;
}
.idk_clip_section4 p{
  color: white;
  font-weight: bold;
}

.idk_clip_section4 img{
  width: 50px;
  height: 35px;
}

.idk_onama_box{
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}

/* ============================= */
/* GLAVNA KARTICA */
/* ============================= */

.idk_slide {
  position: relative;
  display: block;
  width: 100%;
  height: 470px;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;


  transition: transform .35s ease;
  will-change: transform;
}

.idk_slide:hover{
  transform: scale(1.03);
  z-index: 5;
}

/* ============================= */
/* BACKGROUND IMAGE */
/* ============================= */

.idk_slide_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================= */
/* OVERLAY */
/* ============================= */

.idk_slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    #244E7F 100%
  );
  opacity: .75;
  z-index: 2;
  transition: background .35s ease, opacity .35s ease;
}

.idk_slide:hover::after{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    #244E7F 60%
  );
  opacity: 1;
}

/* ============================= */
/* CONTENT BLOK */
/* ============================= */

.idk_slide_content{
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;

  display: flex;
  flex-direction: column;
}

/* ============================= */
/* IKONICA */
/* ============================= */

.idk_slide_icon{
  margin-bottom: 10px;
  transition: transform .3s ease, opacity .25s ease;
}

.idk_slide_icon img{
  width: 34px;
  height: 34px;
  display: block;
}

/* ============================= */
/* NASLOV */
/* ============================= */

.idk_slide_title{
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  transition: opacity .25s ease, transform .25s ease;
}

/* ============================= */
/* DESCRIPTION */
/* default: ne zauzima ništa */
/* ============================= */

.idk_slide_desc{
  display: none;
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

/* ============================= */
/* HOVER STATE */
/* ============================= */

.idk_slide:hover .idk_slide_content{
  top: 28px;
  bottom: 28px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}


/* ikonica uvijek iznad teksta */
.idk_slide:hover .idk_slide_icon{
  transform: translateY(-6px);
}

.idk_slide:hover .idk_slide_title{
  display: none;
}

/* kontrolisani razmak */
.idk_slide:hover .idk_slide_desc{
  display: block;
  margin-top: 8px;   /* 👈 ovdje fino podesi razmak */
  overflow: auto;
  max-height: 100%;
}



.idk_cta_arrows{
    display: flex;
    align-items: center;
    gap: 100px; /* po potrebi */
}

/* container za slick arrows */
.idk_slider_arrows{
    display: flex;
    align-items: center;
    gap: 18px;
}

/* button arrows stil */
.idk_slider_arrows .idk_slick_arrow{
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.idk_slider_arrows .idk_slick_arrow img{
    width: 42px;   /* prilagodi */
    height: 42px;
    display: block;
}

/* optional hover */
.idk_slider_arrows .idk_slick_arrow:hover{
    transform: translateY(-1px);
}

/* na mobitelu lijepo prelomiti */
@media (max-width: 991px){
    .idk_cta_arrows{
        justify-content: center;
        margin-bottom: 30px;
    }
}

.idk_slide_wrap{
   
    border-radius: 2px;
}


.idk_clip_section1 .container{
height: 100%;
}

/* ključno: pusti Y overflow */
.idk_slider {
    overflow-x: hidden;
    overflow-y: visible;
}

/* slick default reže sve – ovo je fix */
.idk_slider .slick-list {
    overflow: visible;
    padding-bottom: 24px; /* prostor da shadow dole stane */
}

/* da se padding ne “pojede” */
.idk_slider .slick-track {
    display: flex;
}

.idk_image_box{
    position: relative;
    width: 100%;
    border-radius: 2px;
    overflow: visible; /* crop slike */
}

/* slika */
.idk_image_box img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 2px;
}

/* floating info box */
.idk_image_floating_box{
    position: absolute;
    right: -25px;    /* koliko “ispada” van slike */
    bottom: -25px;
    background: #fff;
    padding: 33px 30px;
    max-width: 370px;
    border-radius: 2px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.20);
}

/* tekst */
.idk_image_floating_box h3{
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    color: #244E7F;
}

.idk_image_floating_box p{
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #6b6b6b;
}

@media (max-width: 991px){
    .idk_image_floating_box{
        right: 16px;
        bottom: 16px;
        max-width: 90%;
    }
}



.idk_content_item{
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: start;
}

.idk_content_text{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.idk_content_wrapper{
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 35px;
}

.idk_content_text p{
  color: #777777;
}

.idk_content_text h6{
  font-weight: bold;
  font-size: 20px;
  color: #333333;
  margin-bottom: 0px;
}

.idk_btn2, .idk_btn2:visited{
  padding: 20px 50px;
  color: #004274 !important;
  background-color: white;
  border-radius: 2px;
  font-weight: bold;
  
}

.idk_btn2:hover{
  color: #ffffff !important;
  background-color: #185481;
}

.idk_bg{
  background: linear-gradient(
    180deg,
    #244E7F 0%,
    #12273F 100%
);
padding: 100px 0px 0px 0px;

}
.idk_bg8{
  background: linear-gradient(
    180deg,
    #244E7F 0%,
    #12273F 100%
);
padding-top: 100px;

}

.idk_bg p{
  color: rgba(255, 255, 255, 0.5);
}

.idk_bg h2{
  font-size: 48px;
  color: white;
  margin-bottom: 10px;
  line-height: 1.5;
}
.idk_bg8 p{
  color: rgba(255, 255, 255, 0.5);
}

.idk_bg8 h2{
  font-size: 48px;
  color: white;
  margin-bottom: 10px;
  line-height: 1.5;
}

footer{
  background-color: #12273F;
  padding-top: 100px;
}

.idk_social_item{
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.idk_footer_socials{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 45px;
}

footer h6{
  color: white;
  font-weight: bold;
  font-size: 20px;
}

footer ul{
  margin-top: 45px;
}
footer li{
  margin-bottom: 15px;
}


.idk_card1 img {
  height: 50px;
  width: 50px;
}

.idk_card1{
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  padding: 25px 20px; 
  background: linear-gradient(
    180deg,
    #185481 0%,
    #244E7F 100%
);
  transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.idk_card1 h5{
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}

.idk_card1 p{
  color: rgba(255, 255, 255, 0.75);
}

.idk_card1:hover {
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(-6px) scale(1.03);
}


.idk_logo{
  width: 150px;
  height: 100px;
}

header{
  padding: 25px;
}

.idk_clip_section2 p{
  color: white;
  font-size: 20px;
}
.idk_clip_section5 p{
  color: white;
  font-size: 20px;
}

.idk_clip_section5 .container{
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.idk_bg2{
  background: linear-gradient(
  180deg,
  #244E7F 0%,
  #12273F 100%
);

}

.idk_bg2 h3{
  font-size: 32px;
  font-weight: bold;
  color: white;
}


/* ================= FORM ================= */

.idk_contact_form{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ================= LABEL ================= */

.idk_form_group{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.idk_form_group label{
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}

/* ================= INPUTS ================= */

.idk_form_group input,
.idk_form_group textarea{
    width: 100%;
    padding: 16px 18px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(204, 204, 204, 0.5);
    color: #ffffff;
    font-size: 14px;
    transition: all .3s ease;
}

/* Placeholder */

.idk_form_group input::placeholder,
.idk_form_group textarea::placeholder{
    color: rgba(255,255,255,0.7);
}

/* Focus */

.idk_form_group input:focus,
.idk_form_group textarea:focus{
    outline: none;
    border-color: #DE4037;
    background: rgba(204, 204, 204, 0.65);
}

/* Textarea */

.idk_form_group textarea{
    resize: none;
}

.idk_contact_card{
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(
  270deg,
  #173252 0%,
  #004274 100%
  );
  width: 100%;
  height: 160px;
  align-items: start;
  justify-content: center;
  padding-left: 30px;

}

.idk_contact_card h5{
  font-size: 16px;
  font-weight: bold;
  color: white;
}

.idk_contact_card h6{
  font-size: 14px;
  font-weight: bold;
  color: white;
}

.idk_contact_card a{
  font-size: 14px;
  color: white;
}


.idk_bg2 .container{
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.idk_bg .container{
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


footer p{
  color: white;
  font-size: 14px;
}


.idk_bg3{
  background-color: #244E7F;
}

.idk_bg3 h2{
  font-size: 40px;
  font-weight: bold;
  color: white;
}

.idk_bg3 p{

  color: white;
}


.idk_usluga_main{
  width: 100%;
  height: 375px;
}
.idk_usluga_main img{
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
}
.idk_usluga_gal{
  width: 100%;
  height: 115px;
}
.idk_usluga_gal img{
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
}

.idk_kontakt_cta{
  border-bottom: 1px solid #DE4037;
  width: fit-content;
  margin-bottom: 50px;
}

.idk_kontakt_cta h6{
  font-size: 20px;
  color: white;
}

.idk_usluga_wrap{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.idk_usluga_item{
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.idk_usluga_item img{
  width: 25px;
  height: 25px;
}




/* osnovni item */
.idk_accordion .accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 16px;
}

/* header */
.idk_accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-size: 20px;
  padding: 22px 24px;
  border-radius: 0;
  box-shadow: none;
}

/* ZATVORENI – samo donji border */
.idk_accordion .accordion-button.collapsed {
  border-bottom: 1px solid rgba(204, 204, 204, 0.1); /* #CCCCCC na 10% */
}

/* OTVORENI – cijeli box (header + body) */
.idk_accordion .accordion-item:has(.accordion-collapse.show) {
  background: #004274;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25); /* tvoj drop shadow */
  border-radius: 4px;
}

/* kad je otvoren, makni border ispod headera i oboji naslov */
.idk_accordion .accordion-item:has(.accordion-collapse.show) .accordion-button {
  border-bottom: none;
  color: #DE4037;
}

/* tijelo teksta – unutar istog boxa */
.idk_accordion .accordion-body {
  background: transparent;
  color: #cccccc;
  padding: 0 24px 24px;
}

/* ikonice + / - */
.idk_accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23CCCCCC' viewBox='0 0 16 16'%3E%3Cpath d='M8 4v8M4 8h8' stroke='%23CCCCCC' stroke-width='2'/%3E%3C/svg%3E");
}

.idk_accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23F56419' viewBox='0 0 16 16'%3E%3Cpath d='M4 8h8' stroke='%23F56419' stroke-width='2'/%3E%3C/svg%3E");
}

.idk_accordion{
  padding-bottom: 100px;
}

/* =========================
   FAQ accordion – responsive
   Desktop untouched
   ========================= */

/* Tablet i manje (<= 991px) */
@media (max-width: 991.98px) {

  .idk_accordion .accordion-button {
    font-size: 1rem;        /* pitanje */
    padding: 14px 16px;
  }

  .idk_accordion .accordion-body {
    font-size: 0.95rem;     /* odgovor */
    line-height: 1.6;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 767.98px) {

  .idk_accordion .accordion-button {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  .idk_accordion .accordion-body {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* Small mobile (<= 576px) */
@media (max-width: 575.98px) {

  .idk_accordion .accordion-button {
    font-size: 0.9rem;
  }

  .idk_accordion .accordion-body {
    font-size: 0.85rem;
    line-height: 1.55;
  }
}

@media (max-width: 991.98px){
  .idk_logo{
    margin-bottom: 20px;
  }

  .idk_btn{
    padding: 0;
  }
}



/* ================= LANGUAGE SELECTOR ================= */
.idk_lang_selector {
  display: flex;
  justify-content: flex-end;
}

.idk_header_row {
  position: relative;
}

.idk_lang_item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  background: rgba(36, 78, 127, 0.5);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
}

.idk_lang_item img {
  width: 18px;
  height: auto;
  display: block;
}

.idk_lang_plus {
  opacity: 0.7;
}

.idk_lang_item:hover {
  background: rgba(36, 78, 127, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

/* active jezik */
.idk_lang_item.active {
  background: rgba(36, 78, 127, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991.98px) {
  .idk_header_row > .col-lg-2:last-child {
    position: absolute;
    top: 8px;
    right: 0;
    width: auto;
    z-index: 1100;
  }
}



/* ================= LANGUAGE DROPDOWN MENU ================= */

/* dropdown container */
.idk_lang_selector .dropdown-menu{
  margin-top: 8px;
  padding: 6px 0;
  min-width: 140px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(36, 78, 127, 0.5);
  box-shadow: 0px 8px 16px rgba(0,0,0,0.25);
}

/* pojedinačni item */
.idk_lang_selector .dropdown-item{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  transition: background 0.2s ease;
}

/* hover */
.idk_lang_selector .dropdown-item:hover,
.idk_lang_selector .dropdown-item:focus{
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* active language u listi */
.idk_lang_selector .dropdown-item.active{
  background: rgba(255,255,255,0.2);
  color: #fff;
}



/* mobile tweak */
@media (max-width: 991.98px){
  .idk_lang_selector .dropdown-menu{
    right: 0;
    left: auto;
    min-width: 120px;
  }
}






/* ================= RESPONSIVE (ne dira desktop) ================= */
@media (max-width: 991px) {
  .idk_btn_wrapper{
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .idk_btn,
  .idk_btn1{
    width: 100%;
    max-width: 340px;   /* po želji */
    text-align: center;
  }

  .idk_btn{
    padding: 14px 20px;
  }

  .idk_btn1{
    padding: 14px 20px; /* umjesto 15px 0px da ne izgleda "spljošteno" */
  }

  .idk_card{
    margin-bottom: 20px;
  }

  h3{
    font-size: 30px;
  }
  .idk_img{
    margin-top: 30px;
  }

  .idk_clip_section{
     clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
  }
  .idk_clip_section1{
     clip-path: polygon(
      0 3%,
      100% 0,
      100% 100%,
      0 100%
    );
  }

  .idk_bg h2{
    font-size: 36px;
  }
  .idk_bg3 h2{
    font-size: 30px;
  }
  .idk_bg8 h2{
    font-size: 36px;
  }
  .idk_bg2 h3{
    font-size: 30px;
  }
  .idk_btn2{
    display: inline-block;
  }

  .idk_usluga_wrap{
    margin-top: 20px;
  }

  .idk_kontakt_cta{
    margin-top: 50px;
  }

  .idk_footer_socials{
    text-align: start;
    align-items: center;
    margin-top: 20px;
  }

  footer ul{
    margin-top: 20px;
  }

  .idk_card1{
    margin-bottom: 25px;
  }
  .idk_img2{
    height: 180px;
  }
}






































@media (max-width: 480px) {
  .idk_btn,
  .idk_btn1{
    max-width: 100%;
  }
}
/* ================= RESPONSIVE (ne diraj desktop) ================= */

/* Tablet */
@media (max-width: 991px){
  .idk_image_box{
    overflow: hidden; /* da ne ispada van na manjim ekranima */
    border-radius: 2px;
    margin-bottom: 30px;
  }

  .idk_image_floating_box{
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 22px 20px;
  }

  .idk_image_floating_box h3{
    font-size: 34px;
    margin-bottom: 8px;
  }

  .idk_image_floating_box p{
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 575px){
  .idk_image_floating_box{
    right: 10px;
    left: 10px;          /* puni širinu uz mali padding */
    bottom: 10px;
    max-width: none;
    padding: 18px 16px;
  }

  .idk_image_floating_box h3{
    font-size: 28px;
  }

  .idk_image_floating_box p{
    font-size: 12.5px;
    line-height: 1.45;
  }
}

/* Extra small */
@media (max-width: 360px){
  .idk_image_floating_box{
    padding: 16px 14px;
  }

  .idk_image_floating_box h3{
    font-size: 24px;
  }
}


/* ================= CONTACT FORM SUBMIT BUTTON ================= */
.idk_submit_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    background: #00254f; /* prilagodi ako treba */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.idk_submit_btn:hover {
    background: #1c3f66;
    transform: translateY(-1px);
}

.idk_submit_btn:active {
    transform: translateY(0);
}

.idk_submit_btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(36, 78, 127, 0.25);
}

.idk_submit_btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}






































































































/****************** slick styles *************************/

.slick-slide {
  margin: 0 22px;
}

/* 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 {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  width: fit-content;
  background: rgba(36, 78, 127, 0.5);
  margin: auto;
}

#cssmenu > ul > li {
  float: left;
  margin: 3px;
  border-radius: 2px;
}

#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: 7px 25px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  
}

#cssmenu > ul > li:hover {
  background-color: #DE4037;
}

/* keep current page highlighted like hover */
#cssmenu > ul > li.active {
  background-color: #DE4037;
}

#cssmenu > ul > li.has-sub > a {
  padding-right: 30px;
}

#cssmenu > ul > li.has-sub > a:after {
  position: absolute;
  top: 14px;
  right: 11px;
  width: 10px;
  height: 2px;
  display: block;
  background: white;
  content: "";
}

#cssmenu > ul > li.has-sub > a:before {
  position: absolute;
  top: 10px;
  right: 15px;
  display: block;
  width: 2px;
  height: 10px;
  background: white;
  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: 1px solid rgba(255, 255, 255, 0.5);
  padding: 11px 15px;
  width: 225px;
  font-size: 12px;
  text-decoration: none;
  color: white;
  font-weight: 400;
  background: rgba(36, 78, 127, 0.5);;
}

#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;
  background-color: #DE4037;

}

#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: 98%;
    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: 102%;
    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: 7px;
    top: 0;
    display: block;
    border-left: 1px solid rgba(120, 120, 120, 0.2);
    height: 29px;
    width: 29px;
    cursor: pointer;
  }

  #cssmenu .submenu-button.submenu-opened {
    background: #DE4037;
  }

  #cssmenu ul ul .submenu-button {
    height: 34px;
    width: 34px;
  }

  #cssmenu .submenu-button:after {
    position: absolute;
    top: 14px;
    right: 11px;
    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: 11px;
    right: 14px;
    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) {
}


/* ================= slick dots (usluge slider) ================= */
.idk_slider .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  bottom: -32px;
}

.idk_slider .slick-dots li {
  margin: 0;
  width: 12px;
  height: 12px;
}

.idk_slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #6686ac; /* inactive blue */
  text-indent: -9999px; /* hide default label */
}

.idk_slider .slick-dots li.slick-active button {
  background: #DE4037; /* active red */
}

.idk_slider .slick-dots li button:before {
  display: none; /* remove default dot */
}

/* UGASI SVE DEFAULT MARKERE I PSEUDO-ELEMENTE NA DOTS */
.idk_slider .slick-dots,
.idk_slider .slick-dots li {
  list-style: none !important;
}

.idk_slider .slick-dots li::marker {
  content: "" !important;
}

.idk_slider .slick-dots li::before,
.idk_slider .slick-dots li::after,
.idk_slider .slick-dots li button::before,
.idk_slider .slick-dots li button::after {
  content: none !important;
  display: none !important;
}
