body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.logo {
    text-align: center;
}

.fullcontent {
    display: flex;
    justify-content: center;
    width: 100%; 
   background-color: #f8f9fa;
   /* background-size: 100px; */
}

.navigationbar {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
}


.navigationbar a {
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    margin-right: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 30px;
    font-size: 16px;
}

.navigationbar a:hover {
    color: orangered;
}

.navigationbar .active {
    color: orangered;
}

@media (max-width: 768px) {
    .navigationbar {
      display: flex;
      flex-direction: column; 
      align-items: center; 
    }
  
    .navigationbar a {
      margin: 10px 0; 
    }

    .services-solutions {
        flex-direction: column; 
        align-items: center; 
    }  

    .service,
    .solution {

        display: block;
        width: 100%; /* Set the width to 100% to make them stack */
    }

    .pocetok ul li {
        margin-left: 10px;
    }

    .manag ul li {
        margin-left: 10px;
    }

    .integration ul {
        margin-left: 10px;
    }
    
  }

.backg {
    margin-top: -16px;
    /*filter: blur(10px); */
}

.backg img {
    width: 100%;
    height: auto;
}
/* Add these styles to your CSS */
.backg {
    position: relative;
    z-index: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
    
}

.backg img {
    width: 100%;
    height: auto;
    transition: all 0.8s ease;
}

/* Fade-out effect */
body:not(.scrolled) .backg {
    opacity: 1;
    transform: translateY(0);
}

body.scrolled .backg {
    opacity: 0;
    transform: translateY(-50px);
    pointer-events: none;
}

.big {
    text-align: center;
    padding: 30px;
}

.big h1 {
    font-size: xx-large;
}
.big span {
    color: orangered;
    font-size: 20px;
}


.vision p {
    line-height: 1.6;
    font-size: 19px;
    text-align: left;
    margin-left: 15px;
}

.policies p {
    line-height: 1.6;
    font-size: 19px;
    text-align: left;
    margin-left: 15px;
}

.misija {
    font-size: x-large;
    align-items: center;
    text-align: center;
    margin: auto;
    width: 100%; /* Adjust the width as needed */
    margin-top: 80px;
}

.mission {
    align-items: center;
    margin: auto;
    margin-top: 80px;
    max-width: 1000px;
    font-size: 19px;
    line-height: 1.6;
}

.mission ol {
    margin-left: 80px;
    padding: 20px;
    background-color: #f8f9fa;
    /*background-color: #f1f3f5; */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 10px;
    font-size: 19px;
    list-style: none;
}

.mission ol:hover {
    background-color: #f1f3f5;
    transition: background-color 0.3s, transform 0.2s;
    
}

.mission li {
    margin-bottom: 10px;
    margin-left: 30px;
    padding-top: 20px;
}

.about {
    text-align: center;
    font-size: x-large;
}

.aboutus {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.aboutus p {
    flex: 1;
    max-width: 900px;
    padding: 30px;
    background-color: #f8f9fa;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 10px;
    font-size: 19px;
    line-height: 1.6;
}

.aboutus p:last-child {
    margin-right: 0;
}

.aboutus p:hover {
    background-color: #f1f3f5;
    transition: background-color 0.3s, transform 0.2s;
  
}

.bla {
    text-align: center;
    margin-top: 40px;
    font-size: large;
}

.services-solutions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 70px;
}

.services-solutions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 70px;
}

.service,
.solution {
    text-align: center;
    padding: 20px;
    background-color: #f1f3f5;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 10px;
    width: 400px;
}

@media (max-width: 768px) {
    .services-solutions {
        flex-direction: column;
        align-items: center;
    }

    .service,
    .solution {
        width: 100%; 
        margin: 10px 0; 
    }

    .service .button,
    .solution .button {
       margin: 5px;
    }

    .mission p {
        margin-left: 20px;
    }
}


.service img,
.solution img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service h2,
.solution h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service .button,
.solution .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: orangered;
    color: white;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service .button:hover,
.solution .button:hover {
    background-color: #FFA07A;
    transform: scale(1.05);
}

.service .button:active,
.solution .button:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}

.cont {
    padding: 20px;
    background-color: #f8f9fa;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 10px;
    font-size: 17px;
}

.cont:hover {
    background-color: #f1f3f5;
    transition: background-color 0.3s, transform 0.2s;
}

.vision {
    text-align: center;
    max-width: 1000px;
    margin: auto;
    margin-top: 80px;
}

.vizija {
    font-size: x-large;
}

.policies {
    text-align: center;
    max-width: 1000px;
    margin: auto;
    margin-top: 80px;
}

.polisi {
    font-size: x-large;
}

#policyText {
    max-height: 130px; /* show only part initially */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

#policyText.expanded {
    max-height: 3000px; 
}

#policy222 {
    max-height: 130px; /* show only part initially */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

#policy222.expanded {
    max-height: 3000px; 
}

.toggle-btn {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: orangered;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.toggle-btn2 {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: orangered;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}


.partneri {
    font-size: x-large;
    text-align: center;
    margin-bottom: 20px; 
}

.partners {
    max-width: 1000px;
    margin: auto;
    margin-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
}

.logo-sliki {
    display: flex;
    justify-content: space-around; 
    align-items: center; 
    gap: 20px; 
}

.logo-sliki img {
    width: 100%;
    max-width: 150px;
    height: auto; 
    flex-shrink: 1; 
}

.pocetok {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.pocetok h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: orangered;
}

.pocetok ul {
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

.pocetok li {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 19px;
}

.pocetok li::before {
    content: "\2022";
    color: orangered;
    font-size: 20px;
    margin-right: 10px;
}

.pocetok li:not(:last-child) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

@media (max-width: 768px) {
    .flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .eden,
    .dva {
        max-width: 90%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 20px;
        background-color: #f9f9f9;
        text-align: center;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .eden h4,
    .dva h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .eden ul,
    .dva ul {
        list-style-type: disc;
        font-size: 18px;
        line-height: 1.6;
        margin: 0;
        padding-left: 0;
        text-align: left;
    }

    .eden ul li,
    .dva ul li {
        margin-bottom: 10px;
    }

    .slikica img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .eden p,
    .dva p {
        font-size: 18px;
        line-height: 1.6;
    }

    .highlight {
        margin-bottom: -10px;
    }
}

.flex {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 80px;
}

.eden {
    max-width: 1000px;
    font-size: 19px;
    line-height: 1.6;
    margin: auto;
    margin-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
}

.eden ul {
    list-style: none;
    font-size: 19px;
    line-height: 1.6;
}

.highlight {
    color: orangered;
}

.dva {
    max-width: 1000px;
    margin: auto;
    margin-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
}

.dva {
    font-size: 19px;
}

.dvacont {
    max-width: 1000px;
    font-size: 19px;
    line-height: 1.6;
    text-align: center;
}

.dvacont p {
    text-align: left; /* Left-align the text within the .dva section */
    font-size: 19px;
    line-height: 1.6;
}

.slikica {
    display: block;
    margin-left: 10px;
    margin-top: 30px;
}

/* Add this CSS for manag section */
.manag-content {
    margin-top: 80px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.manag-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: orangered;
}

.manag-content ul {
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

.manag-content li {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 19px;
}

.manag-content li::before {
    content: "\2022";
    color: orangered;
    font-size: 20px;
    margin-right: 10px;
}

.manag-content li:not(:last-child) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

@media (max-width: 768px) {
    /* Adjust the image size for mobile devices */
    .slikica img {
       display: none;
    }
}


.nasl {
    color: orangered;
    margin-top: 60px;
}

.integration ul {
    list-style: none;
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 0; 
    text-align: left; 
    line-height: 1.6; 
    font-size: 19px;
    padding-left: 20px;
    padding-right: 20px;
}

.integration li {
    margin-bottom: 20px; 
    line-height: 1.6; 
    list-style: none;
}

.cloud {
    text-align: center;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    margin-top: 100px;
    line-height: 1.6; 
    font-size: 19px;
    padding-left: 20px;
    padding-right: 20px;
}

.cloud h2 {
    color: orangered;
    margin-top: 60px;
    text-align: center;
}

.cloud span {
    color: orangered;
    font-size: 20px;
    
}

.cloud p {
    margin-top: 35px;
    text-align: left;
}

.smart {
    text-align: center;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    margin-top: 100px;
    line-height: 1.6; 
    font-size: 19px;
    padding-left: 20px;
    padding-right: 20px;
}

.smart h2 {
    color: orangered;
    margin-top: 60px;
}

.smart span {
    color: orangered;
    font-size: 20px;
}

.smart p {
    margin-top: 35px;
    text-align: left;
}

.smart p:not(:last-child) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px; 
}

.integration li:not(:last-child) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px; 
}

.contact-footer {
    margin-top: 100px;
    background-color: #333333b4;
    color: #fff;
    padding: 60px 30px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-footer {
    margin-top: 100px;
    background-color: #333333b4;
    color: #fff;
    padding: 60px 30px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    max-width: 400px;
    margin-right: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-info p {
    margin-top: 20px;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-details {
    flex: 1;
    max-width: 400px;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-details p {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-details a {
    color: orangered;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: orangered;
}

ul {
    margin-top: 50px;
}

.birro li {
    list-style: none;
    text-transform: uppercase;
    font-size: xx-large;
    margin-bottom: 20px;
    margin-top: 15px;
}

.mejl a {
    color: orangered;
}

.telefon a {
    color: orangered;
}

.certificate-container {
    border: 1px;
    border-radius: 8px;
    margin: auto;
    overflow: hidden;
    max-width: 900px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 70px;
  }
  
  .certificate-header {
    background: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
  }

  .certificate-header p {
    font-size: large;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
  }
  
 /* .certificate-header:hover {
    background: #f1f3f5;
  } */
  
  .arrow {
    transition: transform 0.3s ease;
  }
  
  .certificate-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8f9fa;
  }
  
  .certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    padding: 20px;
  }
  
  .certificate-item img {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: transform 0.2s ease;
  }
  
  .certificate-item:hover img {
    transform: scale(1.05);
    background: #f1f3f5;
  }
  
  /* expanded */
  .certificate-container.active .certificate-content {
    max-height: 900px; 
    background: #f8f9fa;
  }
  
  .certificate-container.active .arrow {
    transform: rotate(180deg);
  }

  .partner-list {
    padding: 20px 40px;
    margin: 0;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  
  .partner-list span {
    padding: 10px 20px;
    font-size: 20px;
  }
  

  .quotes{
    font-size: 20px;
  }

.copyright {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    padding: 15px 0;
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
}
