* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    list-style: none;
}

svg {
    transition-duration: 0.5s;
    cursor: pointer;
}
svg:hover {
    fill: #ccff33;
}
body {
    width: 100%;
    background: #081c15;
    overflow-x: hidden;
}
.sent {
    width: 100%;
    height: 100vh;
    background: radial-gradient(ellipse at center, #004b23 , #081c15 45%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5vw;
}
.sent img {
    width: 10rem;
}
.preloader {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #004b23 , #081c15 45%);
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}
.preloader img {
    width: 15vw;
    animation: pulse 1s infinite alternate ease-in-out;
}
.preloader.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); } /* Prvi intenzitet */
    70% { transform: scale(1.05); } /* Manje smanjenje */
    100% { transform: scale(1); }
}
.popup-container {
    width: 100vw;
    height: 100%;
    top: 0;
    padding: 0;
    left: 0;
    position: fixed;
    background: rgba(1, 1, 1, 0.4);    
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 101;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
            transition: opacity 0.3s ease;
}
.popup {
    background: radial-gradient(ellipse at top left, #70e000 , #fff 45%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 350px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;

}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 3vh;
}
.popup h2 {
    text-align: center;
    font-family: 'Poppins', serif;
    font-weight: 800;
    color: #081c15;
}
.popup input, .popup select {
    font-family: 'Poppins', serif;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.popup button {
    width: 100%;
    padding: 10px;
    background: #ccff33;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 800;
    color: #081c15;
    border: 3px solid #081c15;
    border-radius: 5px;
    cursor: pointer;
    font-size: 2vh;
    transition: all 0.3s ease-in-out;
}
.popup button:hover {
    background: #081c15;
    color: #ccff33;
}

.open {
    display: none;
}
.navigation {
    display: none;
}
header {
    position: fixed;
    width: 30%;
    height: 8vh;
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    top: 5vh;
    left: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: all 0.2s ease-in-out;

}

.header_anim {
    width: 40%;
    left: 30%;

}
header ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul li img {
    width: 100px;
}
header ul li {
    list-style: none;
    margin: 0 3px;
}
header ul li a{
    color: #111;
    font-family: 'Poppins', serif;
    font-size: 1.8vh;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 15px;
    padding: 5px 10px;
    transition: all 0.1s ease-in-out;
}
header ul li a:hover {
    background: #ccff33;
    color: #081c15;
}

.home {
    position: relative;
    height: 100vh;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(rgba(8, 28, 21, 0.7), rgba(8, 28, 21, 0.5), rgba(8, 28, 21, 1)), url(Images/home.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home_part {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    top: 0;
    padding: 3vh 5vw;
    z-index: 11;

}
.home_h1 {
    font-family: 'Poppins', sans-serif;
    color: #ccff33;
    width: 60vw;
    text-transform: uppercase;
    font-size: 5vh; /* Malo veći za bolju čitljivost */
    font-weight: 500; /* Blago jača debljina */
    letter-spacing: 1.5px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 
                 1px 1px 3px rgba(255, 178, 44, 0.5);
}

.home_h2 {
    font-family: "Bebas Neue", sans-serif;
    color: #fff;
    width: 60vw;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    padding: 0;
    font-size: 12vh; /* Blago povećano za bolji vizuelni balans */
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9), 
                 1px 1px 5px rgba(255, 255, 255, 0.3);
}

.home_h3 {
    font-family: 'Poppins', sans-serif;
    color: #d1d1d1; /* Blago svetlija siva za bolji kontrast */
    width: 60vw;
    font-weight: 600;
    text-align: left;
    padding: 0;
    font-size: 2.2vh; /* Malo veći font radi bolje čitljivosti */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6), 
                 1px 1px 4px rgba(209, 209, 209, 0.4);
}


.home_part p {
    margin: 2vh 0;
    font-family: 'Roboto', serif;
    color: #A6A6A6;
    font-weight: 400;
    font-size: 2vh;
    text-align: center;
}
.home_link {
    font-family: "Bebas Neue", serif;
    font-weight: 900;
    border-radius: 30px;
    width: fit-content;
    height: fit-content;
    padding: 20px 40px;
    background: #ccff33;
    position: relative;
    cursor: pointer;
    color: #081c15;
    text-transform: uppercase;
    margin-left: 2vh;
    margin-top: 2vh;
    font-size: 2vh;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 5px 15px rgba(158, 240, 26, 0.4);
    border: 2px solid transparent;
    display: inline-block;
    animation: pulse1 1.8s infinite;
}

/* Efekat hovera */
.home_link:hover {
    background: #70e000;
    color: white;
    transform: scale(1.05);
    box-shadow: 0px 7px 20px rgba(158, 240, 26, 0.6);
    border: 2px solid white;
}

/* Efekat klika */
.home_link:active {
    transform: scale(0.95);
    box-shadow: 0px 3px 10px rgba(158, 240, 26, 0.4);
}

/* Animacija pulsiranja */
@keyframes pulse1 {
    0% {
        transform: scale(1);
        box-shadow: 0px 5px 15px rgba(158, 240, 26, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0px 7px 20px rgba(158, 240, 26, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0px 5px 15px rgba(158, 240, 26, 0.4);
    }
}


.home_cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 30vw;
    height: 30vh;
    border-radius: 50px;
    background: rgba(1, 1, 1, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.home_cta_h2 {
    font-family: "Bebas Neue", sans-serif;
    color: white;
    font-weight: 500;
    font-size: 3vh;
    text-align: center;
    padding: 2vh 2vw;
    text-align: left;
}
.home_cta_h3 {
    font-family: 'Poppins', sans-serif;
    color: #b9b9b9;
    font-weight: 600;
    font-size: 2vh;
    text-align: center;
    padding: 0vh 2vw;
    text-align: left;
}




.about {
    width: 100%;
    height: 100vh;
    background-color: #081c15;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
}
.about_text {
    width: 40%;
}
.about_img {
    width: 40%;
    height: 60%;
    background: url(Images/about.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 100px 0 100px 0;
    box-shadow: 0px 10px 30px rgba(112, 224, 0, 0.5);
}


.why {
     width: 100%;
     padding: 6vh 0;
    height: fit-content;
    background: radial-gradient(ellipse at top, #24140f , #004b23 85%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50px 200px 50px 200px;
    scale: 0.8;
    text-align: center;
}

.why_header {
    width: 60%;
}
.why_main {
    padding: 4vh 0;
    display: flex;
    flex-direction: row;
    gap: 5vw;
    justify-content: center;
    align-items: center;
}
.why_main div {
    width: 20vw;
    text-align: center;
}
.why_main div img {
    width: 5vw;
}
.why_main div h2 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 2.5vh;
}
.usluge {
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at right, #004b23 , #081c15 25%);
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 4vh 0;
}

.usluge_header {
    width: 30vw;
    padding: 0 5vw;
}
h1 {
      font-family: "Bebas Neue", serif;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    font-size: 6vh;
    display: inline-block;
    overflow: hidden;
}
.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
}



p {
    font-family: "Poppins", serif;
    color: #A6A6A6;
    font-size: 2vh;
}
.programs {
    width: 100vw;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}
.programs_container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    width: 25vw;
    height: fit-content;
}
.programs_img1 {
    width: 20vw;
    height: 40vh;
    background: url(Images/usluge1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition-duration: 0.5s;
    cursor: pointer;
}
.programs_img2 {
    width: 20vw;
    height: 40vh;
    background: url(Images/usluge2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition-duration: 0.5s;
    cursor: pointer;
}
.programs_img3 {
    width: 20vw;
    height: 40vh;
    background: url(Images/usluge3.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition-duration: 0.5s;
    cursor: pointer;
}


.team {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    background: #081c15;
    padding: 6vh 0;
}
.team_header {
    width: 30vw;
padding: 0 5vw;
}
.team_main {
    width: 70vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20vw;
    text-align: center;
    gap: 10px;
}

.team_main img {
    width: 15vw;
    border-radius: 30px;
    transition: opacity 0.5s ease-in-out;

}
#profileName, #profileDescription {
    transition: opacity 0.5s ease-in-out;
  }

  #profileImage,
  #profileName,
  #profileDescription {
      transition: opacity 0.5s ease-in-out;
  }


.contact {
    background: radial-gradient(ellipse at center, #004b23 , #081c15 45%);
    width: 100%;
    height: fit-content;
    flex-direction: row;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6vh 0;
}
.contact_info {
    width: 40%;
    border-right: 1px solid #383838;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contact_info h2 {
    font-family: "Bebas Neue", serif;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    color: white;
    font-size: 6vh;
    display: inline-block;
    overflow: hidden;
    padding-top: 2vh;

}
.contact_info h3 {
    font-family: "Poppins", serif;
    color: #A6A6A6;
    font-weight: 400;
    font-size: 2vh;
    transition-duration: 0.3s;
}
.contact_info h3:hover {
    color: #70e000;
}
.faq {
    width: 40%;
    margin: 20px auto;
    padding: 20px;
    
}
.faq-item {
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #383838;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}

.faq-item.active svg {
    transform: rotate(180deg);
}
.answer {
    display: none;
    padding: 10px;
    font-family: "Poppins", serif;
    text-align: left;
    color: white;
    font-size: 2vh;
}
.map {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center; /* Centriranje po horizontali */
    align-items: center; /* Centriranje po vertikali (ako je potrebno) */
    padding: 4vh 0; /* Ostavlja prostor iznad i ispod */
    background: #081c15; /* Ako želiš tamnu pozadinu */
}

.map iframe {
    width: 80%; /* Širina prilagođena ekranu */
    max-width: 800px; /* Maksimalna širina */
    height: 450px; /* Fiksna visina */
    border-radius: 10px; /* Zaobljeni uglovi */
    box-shadow: 0px 8px 20px rgba(255, 178, 44, 0.5); /* Suptilna senka */
}




footer {
    background: #081c15;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6vh 0;
}

.footer_main {
    width: 80%;
    display: flex;
    justify-content: center;
    gap: 10%;
    align-items: center;
    border-top: 1px solid #383838;
    padding-top: 10%;
}


.footer_main ul li a{
    color: #b9b9b9;
    font-family: 'Poppins', serif;
    font-size: 1.8vh;
    text-transform: uppercase;
    font-weight: 600;
    transition-duration: 0.5s;
}
.footer_main ul li a:hover {
    color: #ccff33;
}
.footer_text {
    border-left: 3px solid #ccff33;
    padding-left: 10%;
}





.about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6vh 5vw;
    background: #081c15;
    color: white;
}

.about-text {
    max-width: 50%;
}



.about-image img {
    width: 100%;
    max-width: 30vw;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(112, 224, 0, 0.5);
}
.mission {
    text-align: center;
    padding: 4vh 0;
    color: white;
    background: #004b23;
    border-radius: 50px;
}

.values_container {
    margin: 4vh 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.value_box{
    background: rgba(255, 178, 44, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 25%;
    box-shadow: 0px 5px 15px rgba(255, 178, 44, 0.3);
}
.value_box h3 {
    color: white;
    font-family: 'Poppins', serif;
    font-size: 2vh;
    text-transform: uppercase;
    font-weight: 600;
    transition-duration: 0.5s;
}


.blog-post .hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(8, 28, 21, 1)), url('/Images/blog.webp') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: white;
    text-align: left;
    padding: 2rem;
  }
  

  
  .blog-post .hero-content {
    position: relative;
    z-index: 2;
    max-width: 40%;
  }
  
  .blog-post .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .blog-post .hero-content .blog-meta {
    font-size: 1rem;
    font-weight: 400;
    color: #ccff33;
    font-family: 'Poppins', sans-serif;
  }
  .blog-post .container {
    max-width: 50%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #222;
  }
  
  .blog-post .container section {
    margin-bottom: 2.5rem;
  }
  
  .blog-post .container h2 {
    font-family: 'bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1rem;
    border-left: 5px solid #ccff33;
    padding-left: 0.75rem;
  }
  
  .blog-post .container p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .blog-post .container ul {
    list-style: none;
    padding-left: 0;
  }
  
  .blog-post .container ul li {
    position: relative;
    padding-left: 1.5rem;
    font-family: "Poppins", serif;
    color: #A6A6A6;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
  }
  
  .blog-post .container ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #ccff33;
    font-weight: bold;
  }
  
  .blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .blog-card {
    background: linear-gradient(65deg, #ccff33, #fff);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
  }
  
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card-content {
    padding: 1.2rem;
  }
  
  .card-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #222;
    font-family: 'Poppins', sans-serif;
  }
  
  .card-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
  }
  
  .read-more {
    color: #ccff33;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
  }
  
  .read-more:hover {
    color: #99cc00;
  }

  
/* LAPTOP I KOMPJUTER DO 1400 */
@media (max-width: 1800px) {
    header {
        width: 60vw;
        left: 20%;
 
        
    }
    .header_anim {
        width: 70%;
        left: 15%;
    
    }
}





/* TABLET */
@media (max-width: 992px)   {
    header {
        width: 80vw;
        left: 10%;
 
        
    }
    .header_anim {
        width: 85%;
        left: 7.5%;
    
    }
        
    .home {
        position: relative;
        height: 100vh;
        width: 100%;
        z-index: 10;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(rgba(8, 28, 21, 0.7), rgba(8, 28, 21, 0.5), rgba(8, 28, 21, 1)), url(Images/home.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .home_part {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        top: 0;
        padding: 3vh 5vw;
        z-index: 11;

    }
    .home_h1 {
        font-family: 'Poppins', sans-serif;
        color: #ccff33;
        padding-top: 20vh;
        width: fit-content;
        text-transform: uppercase;
        font-size: 4vh; /* Malo veći za bolju čitljivost */
    }

    .home_h2 {
        font-size: 10vh; /* Blago povećano za bolji vizuelni balans */
    }

    .home_h3 {
        font-family: 'Poppins', sans-serif;
        color: #d1d1d1; /* Blago svetlija siva za bolji kontrast */
        width: fit-content;
        font-weight: 600;
        text-align: left;
        padding: 0;
        font-size: 2.2vh; /* Malo veći font radi bolje čitljivosti */
        text-transform: uppercase;
        letter-spacing: 1px;
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6), 
                    1px 1px 4px rgba(209, 209, 209, 0.4);
    }


    .home_part p {
        margin: 2vh 0;
        font-family: 'Roboto', serif;
        color: #A6A6A6;
        font-weight: 400;
        font-size: 2vh;
        text-align: center;
    }
    .home_link {
        font-family: "Bebas Neue", serif;
        font-weight: 900;
        border-radius: 30px;
        width: fit-content;
        height: fit-content;
        padding: 20px 40px;
        background: #ccff33;
        position: relative;
        cursor: pointer;
        color: #081c15;
        text-transform: uppercase;
        margin-left: 2vh;
        margin-top: 2vh;
        font-size: 2vh;
        transition: all 0.3s ease-in-out;
        box-shadow: 0px 5px 15px rgba(158, 240, 26, 0.4);
        border: 2px solid transparent;
        display: inline-block;
        animation: pulse1 1.8s infinite;
    }
    

    .home_cta {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 90vw;
        height: fit-content;
        border-radius: 50px;
        background: rgba(1, 1, 1, 0.5);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        padding: 2vh 0;
    }
    .home_cta_h2 {
        font-family: "Bebas Neue", sans-serif;
        color: white;
        font-weight: 500;
        font-size: 3vh;
        text-align: center;
        padding: 2vh 2vw;
        text-align: left;
    }
    .home_cta_h3 {
        font-family: 'Poppins', sans-serif;
        color: #b9b9b9;
        font-weight: 600;
        font-size: 2vh;
        text-align: center;
        padding: 0vh 2vw;
        text-align: left;
    }
        
    .usluge {
        width: 100%;
        height: fit-content;
        background: radial-gradient(ellipse at right, #004b23 , #081c15 25%);
        display: flex;
        flex-direction: column;
        gap: 50px;
        padding: 4vh 0;
    }
    
    .usluge_header {
        width: 90vw;
        padding: 0 5vw;
    }
    h1 {
        font-family: "Bebas Neue", serif;
        text-transform: uppercase;
        font-weight: bold;
        color: white;
        font-size: 6vh;
        display: inline-block;
        overflow: hidden;
    }
    p {
        font-family: "Poppins", serif;
        color: #A6A6A6;
        font-size: 2vh;
    }
    .char {
        display: inline-block;
        opacity: 0;
        transform: translateY(50px);
    }
    
    
    
 
    .programs {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        margin-left: 0vw;
    }
    .programs_container {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-start;
        width: 90vw;
        height: fit-content;
    }
    .programs_img1 {
        width: 60vw;
        height: 40vh;
        background: url(Images/usluge1.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        transition-duration: 0.5s;
        cursor: pointer;
    }
    .programs_img2 {
        width: 60vw;
        height: 40vh;
        background: url(Images/usluge2.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        transition-duration: 0.5s;
        cursor: pointer;
    }
    .programs_img3 {
        width: 60vw;
        height: 40vh;
        background: url(Images/usluge3.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        transition-duration: 0.5s;
        cursor: pointer;
    }
    
    
    
    .team {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #081c15;
        padding: 6vh 0;
    }
    .team_header {
        width: 90vw;
    padding: 4vh 5vw;
    }
    .team_main {
        width: 90vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 0vw;
        text-align: center;
        gap: 10px;
    }
    
    .team_main img {
        width: 40vw;
        border-radius: 30px;
        transition: opacity 0.5s ease-in-out;
    
    }
    #profileName, #profileDescription {
        transition: opacity 0.5s ease-in-out;
    }
    
    #profileImage,
    #profileName,
    #profileDescription {
        transition: opacity 0.5s ease-in-out;
    }


}

/* VECI TELEFON */



@media (max-width: 768px){

    
  .blog-post .hero-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
  }
  
  .blog-post .hero-content h1 {
    font-size: 3rem;
  }
  
  .blog-post .hero-content .blog-meta {
    font-size: 1rem;
    font-weight: 400;
    color: #ccff33;
    font-family: 'Poppins', sans-serif;
  }
  .blog-post .container {
    max-width: 50%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #222;
  }
  
  .blog-post .container section {
    margin-bottom: 2.5rem;
  }
  
  .blog-post .container h2 {
    font-family: 'bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1rem;
    border-left: 5px solid #ccff33;
    padding-left: 0.75rem;
  }
  
  .blog-post .container p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .blog-post .container ul {
    list-style: none;
    padding-left: 0;
  }
  
  .blog-post .container ul li {
    position: relative;
    padding-left: 1.5rem;
    font-family: "Poppins", serif;
    color: #A6A6A6;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
  }
  
  .blog-post .container ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #ccff33;
    font-weight: bold;
  }
  
  .blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .blog-card {
    background: linear-gradient(65deg, #ccff33, #fff);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
  }
  
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card-content {
    padding: 1.2rem;
  }
  
  .card-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #222;
    font-family: 'Poppins', sans-serif;
  }
  
  .card-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
  }
  
  .read-more {
    color: #ccff33;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
  }
  
  .read-more:hover {
    color: #99cc00;
  }


    .preloader {
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at center, #004b23 , #081c15 45%);
        position: fixed;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 0.5s ease-out;
    }
    .preloader img {
        width: 35vw;
        animation: pulse 1s infinite alternate ease-in-out;
    }
    .preloader.hidden {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
    .open {
        display: block;
    }
    header {
        position: fixed;
        width: 30%;
        height: 8vh;
        border-radius: 50px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);  
        top: 10vh;
        left: 35%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
        transition: all 0.1s ease-in-out;
        
    }
    
    .header_anim {
        width: 50%;
        left: 25%;
    
    }
    header ul {
        display: none;
    }
  
    .navigation {
        max-height: 80vh;
        height: 80vh;
        overflow: hidden;
        opacity: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        margin: 0;
        padding: 20px;
        position: fixed;
        top: 0%;
        left: 0%;
        transition: all 0.2s ease-in-out;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);     
        background: rgba(8, 28, 21, 0.5); 
        z-index: 101;
        width: 0vw;
        pointer-events: none; /* sprečava klik kada nije aktivan */

    }
    
    .navigation.active {
        width: 100vw;
        max-height: 100vh; /* dovoljna visina za sve linkove */
        height: 80vh;
        opacity: 1;
        pointer-events: all;
    }
    
    .navigation.active li {
        display: block;
    }
    .navigation li img {
        width: 100px;
    }
    .navigation li {
        list-style: none;
        margin: 10px 0;
        display: none;

    }
    .navigation li a{
        color: #fff;
        font-family: 'Poppins', serif;
        font-size: 1.4rem;
        text-transform: uppercase;
        font-weight: 600;
        border-radius: 15px;
        padding: 5px 10px;
        transition: all 0.3s ease-in-out;
        pointer-events: all;
    }
    .navigation li a:hover {
        background: #ccff33;
        color: black;
    }


    
.home {
    position: relative;
    height: 100vh;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(rgba(8, 28, 21, 0.7), rgba(8, 28, 21, 0.5), rgba(8, 28, 21, 1)), url(Images/home.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home_part {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    top: 0;
    padding: 3vh 5vw;
    z-index: 11;

}
.home_h1 {
    font-family: 'Poppins', sans-serif;
    color: #ccff33;
    padding-top: 20vh;
    width: fit-content;
    text-transform: uppercase;
    font-size: 4vh; /* Malo veći za bolju čitljivost */
    font-weight: 500; /* Blago jača debljina */
    letter-spacing: 1.5px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 
                 1px 1px 3px rgba(255, 178, 44, 0.5);
}

.home_h2 {
    font-family: "Bebas Neue", sans-serif;
    color: #fff;
    width: fit-content;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    padding: 0;
    font-size: 6vh; /* Blago povećano za bolji vizuelni balans */
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9), 
                 1px 1px 5px rgba(255, 255, 255, 0.3);
}

.home_h3 {
    font-family: 'Poppins', sans-serif;
    color: #d1d1d1; /* Blago svetlija siva za bolji kontrast */
    width: fit-content;
    font-weight: 600;
    text-align: left;
    padding: 0;
    font-size: 2.2vh; /* Malo veći font radi bolje čitljivosti */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6), 
                 1px 1px 4px rgba(209, 209, 209, 0.4);
}


.home_part p {
    margin: 2vh 0;
    font-family: 'Roboto', serif;
    color: #A6A6A6;
    font-weight: 400;
    font-size: 2vh;
    text-align: center;
}
.home_link {
    font-family: "Bebas Neue", serif;
    font-weight: 900;
    border-radius: 30px;
    width: fit-content;
    height: fit-content;
    padding: 20px 40px;
    background: #ccff33;
    position: relative;
    cursor: pointer;
    color: #081c15;
    text-transform: uppercase;
    margin-left: 2vh;
    margin-top: 2vh;
    font-size: 2vh;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 5px 15px rgba(158, 240, 26, 0.4);
    border: 2px solid transparent;
    display: inline-block;
    animation: pulse1 1.8s infinite;
}

/* Efekat hovera */
.home_link:hover {
    background: #70e000;
    color: white;
    transform: scale(1.05);
    box-shadow: 0px 7px 20px rgba(158, 240, 26, 0.6);
    border: 2px solid white;
}

/* Efekat klika */
.home_link:active {
    transform: scale(0.95);
    box-shadow: 0px 3px 10px rgba(255, 160, 0, 0.4);
}

/* Animacija pulsiranja */
@keyframes pulse1 {
    0% {
        transform: scale(1);
        box-shadow: 0px 5px 15px rgba(158, 240, 26, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0px 7px 20px rgba(158, 240, 26, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0px 5px 15px rgba(158, 240, 26, 0.4);
    }
}


.home_cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90vw;
    height: fit-content;
    border-radius: 50px;
    background: rgba(1, 1, 1, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2vh 0;
}
.home_cta_h2 {
    font-family: "Bebas Neue", sans-serif;
    color: white;
    font-weight: 500;
    font-size: 3vh;
    text-align: center;
    padding: 2vh 2vw;
    text-align: left;
}
.home_cta_h3 {
    font-family: 'Poppins', sans-serif;
    color: #b9b9b9;
    font-weight: 600;
    font-size: 2vh;
    text-align: center;
    padding: 0vh 2vw;
    text-align: left;
}


.about {
    width: 100%;
    height: 100vh;
    background-color: #081c15;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5vw;
}
.about_text {
    width: 90%;
    z-index: 2;
}
.about_img {
    width: 80%;
    height: 60%;
    background: url(Images/about.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 100px 0 100px 0;
    box-shadow: 0px 10px 30px rgba(112, 224, 0, 0.5);
    z-index: 1;
}



.why {
    width: 100%;
    padding: 6vh 0;
   height: fit-content;
   background: radial-gradient(ellipse at top, #24140f , #004b23 85%);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   border-radius: 10px 50px 10px 50px;
   scale: 0.8;
   text-align: center;
}

.why_header {
   width: 90%;
}
.why_main {
   padding: 4vh 0;
   display: flex;
   flex-direction: row;
   gap: 5vw;
   justify-content: center;
   align-items: center;
}
.why_main div {
   width: 20vw;
   text-align: center;
}
.why_main div img {
   width: 5vw;
}
.why_main div h2 {
   font-family: 'Poppins', sans-serif;
   color: #fff;
   font-weight: 600;
   font-size: 2.5vh;
}
.usluge {
   width: 100%;
   height: fit-content;
   background: radial-gradient(ellipse at right, #004b23 , #081c15 25%);
   display: flex;
   flex-direction: column;
   gap: 50px;
   padding: 4vh 0;
}

.usluge_header {
   width: 90vw;
   padding: 0 5vw;
}
h1 {
     font-family: "Bebas Neue", serif;
   text-transform: uppercase;
   font-weight: bold;
   color: white;
   font-size: 6vh;
   display: inline-block;
   overflow: hidden;
}
.char {
   display: inline-block;
   opacity: 0;
   transform: translateY(50px);
}



p {
   font-family: "Poppins", serif;
   color: #A6A6A6;
   font-size: 2vh;
}
.programs {
   width: 100%;
   height: fit-content;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
   gap: 30px;
   margin-left: 0vw;
   padding: 0 5vw;
}
.programs_container {
   display: flex;
   flex-direction: column;
   justify-content: space-around;
   align-items: flex-start;
   width: 90vw;
   height: fit-content;
}
.programs_img1 {
   width: 90vw;
   height: 40vh;
   background: url(Images/usluge1.webp);
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   border-radius: 20px;
   transition-duration: 0.5s;
   cursor: pointer;
}
.programs_img2 {
   width: 90vw;
   height: 40vh;
   background: url(Images/usluge2.webp);
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   border-radius: 20px;
   transition-duration: 0.5s;
   cursor: pointer;
}
.programs_img3 {
   width: 90vw;
   height: 40vh;
   background: url(Images/usluge3.webp);
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   border-radius: 20px;
   transition-duration: 0.5s;
   cursor: pointer;
}



.team {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #081c15;
    padding: 6vh 0;
}
.team_header {
    width: 90vw;
padding: 4vh 5vw;
}
.team_main {
    width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0vw;
    text-align: center;
    gap: 10px;
}

.team_main img {
    width: 90vw;
    border-radius: 30px;
    transition: opacity 0.5s ease-in-out;

}
#profileName, #profileDescription {
    transition: opacity 0.5s ease-in-out;
  }

  #profileImage,
  #profileName,
  #profileDescription {
      transition: opacity 0.5s ease-in-out;
  }


.contact {
    background: radial-gradient(ellipse at center, #004b23 , #081c15 45%);
    width: 100%;
    height: fit-content;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6vh 0;
}
.contact_info {
    width: 90%;
    border-right: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.faq {
    width: 90%;
    margin: 20px auto;
    padding: 20px;
    
}
.faq-item {
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #383838;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}

.faq-item.active svg {
    transform: rotate(180deg);
}
.answer {
    display: none;
    padding: 10px;
    font-family: "Poppins", serif;
    text-align: left;
    color: white;
    font-size: 2vh;
}
.map {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center; /* Centriranje po horizontali */
    align-items: center; /* Centriranje po vertikali (ako je potrebno) */
    padding: 4vh 0; /* Ostavlja prostor iznad i ispod */
    background: #081c15; /* Ako želiš tamnu pozadinu */
}

.map iframe {
    width: 80%; /* Širina prilagođena ekranu */
    max-width: 800px; /* Maksimalna širina */
    height: 450px; /* Fiksna visina */
    border-radius: 10px; /* Zaobljeni uglovi */
    box-shadow: 0px 8px 20px rgba(255, 178, 44, 0.5); /* Suptilna senka */
}




footer {
    background: #081c15;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6vh 0;
}

.footer_main {
    width: 80%;
    display: flex;
    justify-content: center;
    gap: 10%;
    align-items: center;
    border-top: 1px solid #383838;
    padding-top: 10%;
}


.footer_main ul li a{
    color: #b9b9b9;
    font-family: 'Poppins', serif;
    font-size: 1.8vh;
    text-transform: uppercase;
    font-weight: 600;
    transition-duration: 0.5s;
}
.footer_main ul li a:hover {
    color: #ccff33;
}
.footer_text {
    border-left: 3px solid #ccff33;
    padding-left: 10%;
}





.about-hero {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 6vh 5vw;
    background: #081c15;
    color: white;
}

.about-text {
    padding: 8vh 0;
    max-width: 90%;
}
.about-image img {
    max-width: 90vw;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(112, 224, 0, 0.5);
}
.mission {
    text-align: center;
    padding: 4vh 0;
    color: white;
    background: #111;
}

.values_container {
    margin: 4vh 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.value_box{
    background: rgba(255, 178, 44, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    box-shadow: 0px 5px 15px rgba(255, 178, 44, 0.3);
}
.value_box h3 {
    color: white;
    font-family: 'Poppins', serif;
    font-size: 2vh;
    text-transform: uppercase;
    font-weight: 600;
    transition-duration: 0.5s;
}

.popup {
    background: radial-gradient(ellipse at top left, #70e000 , #fff 45%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

}