/* Osnovni reset i podešavanja */
* {
  box-sizing: border-box;
  /*margin: 0;*/
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
}

body {
  background: #f9fafb;
  color: #1e293b;
  line-height: 1.6;
}


/* Osnovni reset i raspored */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Glavni sadržaj treba da raste i zauzme sav prostor između headera i footera */
main.container {
  flex: 1 0 auto; /* raste i zauzima prostor */
}

/* Header stilovi */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  background-color: #000000;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 40px;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

nav ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #3b82f6;
  transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
  color: #3b82f6;
}

nav ul li a:hover::after,
nav ul li a:focus::after {
  width: 100%;
}

/* Toggle dugme */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #cbd5e1;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive meni */
@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 64px;
    right: -100%;
    flex-direction: column;
    background-color: #000000;
    width: 200px;
    height: calc(100vh - 64px);
    padding-top: 20px;
    gap: 16px;
    transition: right 0.3s ease;
  }
  nav ul.active {
    right: 0;
  }
  .menu-toggle {
    display: flex;
  }
}

/* Hamburger animacija */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* Footer na dnu i pune širine */
footer {
  padding: 5px 5px;   /* Smanjena visina kroz manje paddinga */
  font-size: 0.9rem;    /* Manji font da footer bude kompaktniji */
  text-align: center;
  background-color: #000000;
  color: white;
  width: 100%;
  box-sizing: border-box;
}



/* Hero sekcija */
/*.hero-section {
  background: url('../images/LightBoxBackground2020.jpg') no-repeat center center/cover;
  background-color: black;
  color: white;
  position:relative;
  text-align: center;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;  
  
}*/

.hero-section {
  background: url('../images/pozadina.jpg') no-repeat center center/cover;
  background-color: black;
  color: white;
  text-align: center;
  min-height: 840px;

  /*display: flex;*/
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* crna providna pozadina preko slike */
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  
  margin-bottom: 16px;
  font-size: 60px;
  text-transform: none;
  color: #fff;
  line-height: 120%  
}

.hero-content p {
  font-size: 1.25rem;
  color:#a8aeb6;
  
}


 .hero-content h2 {
    font-size: 30px;
    text-transform: none;
    color: #fff;
    line-height: 120%
}

@media(min-width: 480px) {
     .hero-section h1 {
        font-size:60px
    }
}

@media(min-width: 600px) {
     .hero-section h1 {
        font-size:60px
    }
}

@media(min-width: 768px) {
     .hero-section h1 {
        font-size:54px
    }
}

@media(min-width: 992px) {
     .hero-section h1 {
        font-size:64px
    }
}

@media(min-width: 1200px) {
    .hero-section h1 {
        font-size:70px
    }
}

@media(min-width: 480px) {
    section.hero-content {
        font-size:20px;
        line-height: 150%
    }
}

@media(min-width: 600px) {
    section.hero-section {
        height:840px;            
    }
}

/* Reference i novosti */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.references, .news {
  background: white;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  padding: 24px;
  border-radius: 8px;
  flex: 1 1 300px;
}

.references h2, .news h2 {
  margin-bottom: 16px;
  color: #1e293b;
}

.references ul, .news ul {
  list-style: disc inside;
  color: #475569;
  font-size: 1rem;
}

.references ul li, .news ul li {
  margin-bottom: 10px;
}

/*dugme za skrulovanje na vrh stranice*/
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: #2563eb;
  color: white;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* sakriven dok se ne skroluje */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #1d4ed8;
}


/* --- Karusel --- */


/*Usluge stranica*/
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.service-item {
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}

.service-item h3 {
  color: #1e293b;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.service-item p {
  color: #475569;
  line-height: 1.5;
}

.service-item img.service-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
/*O nama */
.about-us {
  max-width: 1000px;
  margin: auto;
  padding: 40px;
  background-color: #f9fafb;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  color: #334155;
  line-height: 1.6;
  font-size: 1.1rem;
  font-family: Arial, sans-serif;
}

.about-us h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.about-us p {
  margin-bottom: 16px;
}
/*Kontakt stranica*/
.contact-page {
  max-width: 600px;
  margin: 10px auto 10px;
  padding: 0 20px;
}

.contact-page h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #1e293b;
  font-size: 2rem;
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f9fafb;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.contact-form label {
  font-weight: 600;
  color: #475569;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 35px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb; /* plava boja fokusa */
  outline: none;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}

.contact-form button {
  padding: 14px;
  background-color: #2563eb;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #1d4ed8;
}

.contact-info {
  margin-top: 10px;
  background: #f1f5f9;
  padding: 10px 25px;
  border-radius: 10px;
  color: #334155;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-info h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #1e293b;
}

.contact-info p {
  margin: 6px 0;
  font-size: 1rem;
  line-height: 1.4;
}

/*Test news-a*/

.News h2 {
    /*color: #ff7200;*/
    font-size: 40px;
    padding-bottom: 25px;
    max-width: none!important
}

@media(min-width: 768px) {
        .News h2 {
        font-size:48px
    }
}

@media(min-width: 992px) {
    main section.News h2 {
        font-size:48px
    }
}

section.News h2:after {
    content: "";
    position: absolute;
    left: -10px;
    bottom: 0;
    right: -10px;
    height: 0;
    border-bottom: 1px dashed #d9d9d9
}

section.News .NewsPage {
    overflow: hidden;
    -webkit-transition: opacity linear 200ms,height linear 200ms;
    -o-transition: opacity linear 200ms,height linear 200ms;
    transition: opacity linear 200ms,height linear 200ms
}

section.News .NewsPage.Hidden {
    display: none
}

section.News .NewsItem {
    margin-bottom: 30px
}

section.News .NewsItem:last-child {
    margin-bottom: 0
}

section.News .NewsItem h3 {
    color: #404040;
    font-size: 18px;
    padding: 0;
    margin: 0;
    margin-bottom: 10px
}

@media(min-width: 768px) {
    .News .NewsItem h3 {
        font-size:18px
    }
}

@media(min-width: 992px) {
    .News .NewsItem h3 {
        font-size:18px
    }
}

.News .NewsItem h3:after {
    display: none
}

.News .NewsItem a {
    color: #404040
}

.News .NewsItem a.Button {
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity linear 100ms;
    -o-transition: opacity linear 100ms;
    transition: opacity linear 100ms;
    font-family: 'Open Sans Condensed','HelveticaNeue-CondensedBold',Helvetica,'Arial Narrow',Calibri,Arial,'Lucida Grande',sans-serif;
    font-stretch: condensed;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none!important;
    white-space: nowrap;
    font-weight: bold;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 2px solid #ff7200;
    background-color: transparent;
    /*color: #ff7200;*/
    cursor: pointer;
    font-size: 16px;
    padding: 7px 20px;
    margin-left: 10px;
    margin: 10px 0
}

 section.News .NewsItem a.Button {
    opacity: 1;
    font-stretch: normal
}

section.News .NewsItem a.Button {
    opacity: 1
}

section.News .NewsItem a.Button:first-child {
    margin-left: 0
}

section.News .NewsItem p {
    margin: 5px 0
}

section.News .Pager {
    margin-top: 50px
}

section.News .Pager:before,section.News .Pager:after {
    content: "";
    display: table;
    width: 0
}

section.News .Pager:after {
    clear: both
}


section.News .Pager.Buttons .Button.Disabled {
    display: none
}

section.News .Pager.Buttons .Button.Disabled+.Button {
    margin-left: 0
}


/*test grida */

@media(min-width: 768px) {
    section  {
        padding-top:80px;
        padding-bottom: 80px;
        
    }

    section:last-child {
        padding-bottom: 20px
    }
}

section .content .grid {
    margin-top: 20px;
    margin-bottom: 20px
}

section .News {
  display: block;
}

*,*:before,*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

section .content {
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    line-height: normal;
    color: #404040;
    
}

section .content h2 {
    opacity: 1;
    font-stretch: normal
}

section.News h2 {
    /*color: #ff7200;*/
    font-size: 40px;
    padding-bottom: 25px;
    max-width: none!important
}

section.News h2:after {
    content: "";
    position: absolute;
    left: -10px;
    bottom: 0;
    right: -10px;
    height: 0;
    border-bottom: 1px dashed #d9d9d9
}

section .content .grid:first-child {
    margin-top: 0
}

section .content .grid:last-child {
    margin-bottom: 0
}

section .content .block-grid {
    margin-top: 40px;
    margin-bottom: 40px
}

section .content .block-grid:first-child {
    margin-top: 0
}

section .content .block-grid:last-child {
    margin-bottom: 0
}

section .content .grid,section .content .block-grid {
    margin-left: -15px;
    margin-right: -15px;
    overflow: hidden
}

section .content .grid>.row,section .content .block-grid>.row {
    margin-top: -15px!important;
    margin-bottom: -15px!important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

section .content .grid>.row:before,section .content .block-grid>.row:before,section .content .grid>.row:after,section .content .block-grid>.row:after {
    content: "";
    display: table;
    width: 0
}

section .content .grid>.row:after,section .content .block-grid>.row:after {
    clear: both
}

section .content .grid>.row>div.sys-v-align-top,section .content .block-grid>.row>div.sys-v-align-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start
}

@media(min-width: 480px) {
    html section .content .grid>.row>div.sys-v-align-top-xs,html section .content .block-grid>.row>div.sys-v-align-top-xs {
        -webkit-align-self:flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start
    }
}

@media(min-width: 600px) {
    html section .content .grid>.row>div.sys-v-align-top-xsm,html section .content .block-grid>.row>div.sys-v-align-top-xsm {
        -webkit-align-self:flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start
    }
}

@media(min-width: 768px) {
    html section .content .grid>.row>div.sys-v-align-top-sm,html section .content .block-grid>.row>div.sys-v-align-top-sm {
        -webkit-align-self:flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start
    }
}

@media(min-width: 992px) {
    html section .content .grid>.row>div.sys-v-align-top-md,html section .content .block-grid>.row>div.sys-v-align-top-md {
        -webkit-align-self:flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start
    }
}

@media(min-width: 1200px) {
    html section .content .grid>.row>div.sys-v-align-top-lg,html section .content .block-grid>.row>div.sys-v-align-top-lg {
        -webkit-align-self:flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start
    }
}

section .content .grid>.row>div.sys-v-align-middle,section .content .block-grid>.row>div.sys-v-align-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
}

@media(min-width: 480px) {
    html section .content .grid>.row>div.sys-v-align-middle-xs,html section .content .block-grid>.row>div.sys-v-align-middle-xs {
        -webkit-align-self:center;
        -ms-flex-item-align: center;
        align-self: center
    }
}

@media(min-width: 600px) {
    html section .content .grid>.row>div.sys-v-align-middle-xsm,html section .content .block-grid>.row>div.sys-v-align-middle-xsm {
        -webkit-align-self:center;
        -ms-flex-item-align: center;
        align-self: center
    }
}

@media(min-width: 768px) {
    html section .content .grid>.row>div.sys-v-align-middle-sm,html section .content .block-grid>.row>div.sys-v-align-middle-sm {
        -webkit-align-self:center;
        -ms-flex-item-align: center;
        align-self: center
    }
}

@media(min-width: 992px) {
    html section .content .grid>.row>div.sys-v-align-middle-md,html section .content .block-grid>.row>div.sys-v-align-middle-md {
        -webkit-align-self:center;
        -ms-flex-item-align: center;
        align-self: center
    }
}

@media(min-width: 1200px) {
    html section .content .grid>.row>div.sys-v-align-middle-lg,html section .content .block-grid>.row>div.sys-v-align-middle-lg {
        -webkit-align-self:center;
        -ms-flex-item-align: center;
        align-self: center
    }
}

section .content .grid>.row>div.sys-v-align-botto,section .content .block-grid>.row>div.sys-v-align-botto {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

@media(min-width: 480px) {
    html section .content .grid>.row>div.sys-v-align-botto-xs,html section .content .block-grid>.row>div.sys-v-align-botto-xs {
        -webkit-align-self:flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end
    }
}

@media(min-width: 600px) {
    html section .content .grid>.row>div.sys-v-align-botto-xsm,html section .content .block-grid>.row>div.sys-v-align-botto-xsm {
        -webkit-align-self:flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end
    }
}

@media(min-width: 768px) {
    html section .content .grid>.row>div.sys-v-align-botto-sm,html section .content .block-grid>.row>div.sys-v-align-botto-sm {
        -webkit-align-self:flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end
    }
}

@media(min-width: 992px) {
    html section .content .grid>.row>div.sys-v-align-botto-md,html section .content .block-grid>.row>div.sys-v-align-botto-md {
        -webkit-align-self:flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end
    }
}

@media(min-width: 1200px) {
    html section .content .grid>.row>div.sys-v-align-botto-lg,html section .content .block-grid>.row>div.sys-v-align-botto-lg {
        -webkit-align-self:flex-end;
        -ms-flex-item-align: end;
        align-self: flex-end
    }
}

section .content .grid>.row>div.column-break,section .content .block-grid>.row>div.column-break {
    position: static;
    display: none;
    width: 0;
    overflow: hidden
}

section .content .grid>.row>div.column-break:before,section .content .block-grid>.row>div.column-break:before,section .content .grid>.row>div.column-break:after,section .content .block-grid>.row>div.column-break:after {
    content: "";
    display: table;
    width: 0
}

section .content .grid>.row>div.column-break:after,section .content .block-grid>.row>div.column-break:after {
    clear: both
}

@media(min-width: 480px) and (max-width:599px) {
    section .content .grid>.row>div.column-break.xs,section .content .block-grid>.row>div.column-break.xs {
        display:block
    }
}

@media(min-width: 600px) and (max-width:767px) {
    section .content .grid>.row>div.column-break.xsm,section .content .block-grid>.row>div.column-break.xsm {
        display:block
    }
}

@media(min-width: 768px) and (max-width:991px) {
    section .content .grid>.row>div.column-break.sm,section .content .block-grid>.row>div.column-break.sm {
        display:block
    }
}

@media(min-width: 992px) and (max-width:1199px) {
    section .content .grid>.row>div.column-break.md,section .content .block-grid>.row>div.column-break.md {
        display:block
    }
}

@media(min-width: 1200px) {
    section .content .grid>.row>div.column-break.lg,section .content .block-grid>.row>div.column-break.lg {
        display:block
    }
}

section .content .col-xsm-1,section .content .col-xsm-5 {
    position: relative;
    min-height: 1px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px
}



section .content .col-12 {
    float: left
}

section .content .col-12 {
    width: 100%;
    display: block
}


section .content .col-xsm-offset-5 {
    margin-left: 41.66666667%
}
@media(min-width: 992px) {
    section .content>h2,section .content>h3,section .content>h4,section .content>p {
        max-width:90%
    }
}



@media(min-width: 600px) {
    section .content .col-xsm-11,section .content .col-xsm-12 {
        float:left;
    }

    section .content .col-xsm-12 {
        width: 100%;
        display: block
    }

    section .content .col-xsm-offset-1 {
        margin-left: 8.33333333%;
    }

    section .content .col-xsm-5 {
        width: 41.66666667%;
        display: block
    }
}    




/* Dugmad*/

body .Button.Orange {
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity linear 100ms;
    -o-transition: opacity linear 100ms;
    transition: opacity linear 100ms;
    font-family: 'Open Sans Condensed','HelveticaNeue-CondensedBold',Helvetica,'Arial Narrow',Calibri,Arial,'Lucida Grande',sans-serif;
    font-stretch: condensed;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none!important;
    white-space: nowrap;
    font-weight: bold;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 2px solid #ff7200;
    /*background-color: #ff7200;*/
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 7px 20px;
    margin-left: 10px
}

body .Button.Orange {
    opacity: 1;
    font-stretch: normal
}

body .Button.Orange {
    opacity: 1
}

body .Button.Orange:first-child {
    margin-left: 0
}

body .Button.OrangeTransparent {
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity linear 100ms;
    -o-transition: opacity linear 100ms;
    transition: opacity linear 100ms;
    font-family: 'Open Sans Condensed','HelveticaNeue-CondensedBold',Helvetica,'Arial Narrow',Calibri,Arial,'Lucida Grande',sans-serif;
    font-stretch: condensed;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none!important;
    white-space: nowrap;
    font-weight: bold;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 2px solid #ff7200;
    background-color: transparent;
    /*color: #ff7200;*/
    cursor: pointer;
    font-size: 16px;
    padding: 7px 20px;
    margin-left: 10px
}

body .Button.OrangeTransparent {
    opacity: 1;
    font-stretch: normal
}

body .Button.OrangeTransparent {
    opacity: 1
}

body .Button.OrangeTransparent:first-child {
    margin-left: 0
}

body .Button.Transparent {
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity linear 100ms;
    -o-transition: opacity linear 100ms;
    transition: opacity linear 100ms;
    font-family: 'Open Sans Condensed','HelveticaNeue-CondensedBold',Helvetica,'Arial Narrow',Calibri,Arial,'Lucida Grande',sans-serif;
    font-stretch: condensed;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none!important;
    white-space: nowrap;
    font-weight: bold;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 7px 20px;
    margin-left: 10px
}

body .Button.Transparent {
    opacity: 1;
    font-stretch: normal
}

body .Button.Transparent {
    opacity: 1
}

body .Button.Transparent:first-child {
    margin-left: 0
}

body .Button.White {
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity linear 100ms;
    -o-transition: opacity linear 100ms;
    transition: opacity linear 100ms;
    font-family: 'Open Sans Condensed','HelveticaNeue-CondensedBold',Helvetica,'Arial Narrow',Calibri,Arial,'Lucida Grande',sans-serif;
    font-stretch: condensed;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none!important;
    white-space: nowrap;
    font-weight: bold;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 2px solid #fff;
    background-color: #fff;
    /*color: #ff7200;*/
    cursor: pointer;
    font-size: 16px;
    padding: 7px 20px;
    margin-left: 10px
}

body .Button.White {
    opacity: 1;
    font-stretch: normal
}

body .Button.White {
    opacity: 1
}

body .Button.White:first-child {
    margin-left: 0
}

body .Button.Gray {
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity linear 100ms;
    -o-transition: opacity linear 100ms;
    transition: opacity linear 100ms;
    font-family: 'Open Sans Condensed','HelveticaNeue-CondensedBold',Helvetica,'Arial Narrow',Calibri,Arial,'Lucida Grande',sans-serif;
    font-stretch: condensed;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none!important;
    white-space: nowrap;
    font-weight: bold;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 2px solid #404040;
    background-color: transparent;
    color: #404040;
    cursor: pointer;
    font-size: 16px;
    padding: 7px 20px;
    margin-left: 10px
}

body .Button.Gray {
    opacity: 1;
    font-stretch: normal
}

body .Button.Gray {
    opacity: 1
}

body .Button.Gray:first-child {
    margin-left: 0
}

/* OStalo*/
section .content {
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: auto
}

@media(min-width: 768px) {
    section .content {
        max-width:768px
    }
}

@media(min-width: 992px) {
    section .content {
        max-width:992px
    }
}

@media(min-width: 1200px) {
    section .content {
        max-width:1200px
    }
}

section .content:before,section .content:after {
    content: "";
    display: table;
    width: 0;
}

section .content:after {
    clear: both
}

/* Osnovni stil za pravnu napomenu */
#legal-note {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px 30px;
  background-color: #ffffff;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  line-height: 1.6;
}

/* Naslovi */
#legal-note h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}

#legal-note h3 {
  font-size: 20px;
  margin-top: 25px;
  color: #0054a6;
}

/* Paragrafi */
#legal-note p {
  margin-bottom: 16px;
}

/* Linkovi */
#legal-note a {
  color: #007acc;
  text-decoration: none;
}

#legal-note a:hover {
  text-decoration: underline;
}

/* Horizontalna linija */
#legal-note hr {
  margin: 30px 0;
  border: none;
  height: 1px;
  background-color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  #legal-note {
    padding: 15px 20px;
  }

  #legal-note h2 {
    font-size: 24px;
  }

  #legal-note h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  #legal-note {
    padding: 10px 15px;
  }

  #legal-note h2 {
    font-size: 22px;
  }

  #legal-note h3 {
    font-size: 17px;
  }
}

/* Linkovi na crnoj pozadini */
.dark-bg a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dark-bg a:hover {
  color: #00bfff; /* svetloplava ili promeni po želji */
  text-decoration: none;
}
/*Softverska rjesenja sekcija*/
.softverska-rjesenja {
  padding: 40px;
  background-color: #f4f4f4;
  text-align: center;
  font-family: sans-serif;
}

.softverska-rjesenja h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.rjesenja-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.rjesenje {
  width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.rjesenje img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #00bfff; /* dodaje plavi prsten */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.rjesenje:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.rjesenje p {
  margin-top: 10px;
  font-size: 0.95em;
  color: #333;
}

/* Tooltip za prikazivanje poruke na ekranu ako se uspjesno posalje poruka iz kontakt forme*/
.tooltip-status {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 14px 20px;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tooltip-status.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.tooltip-status.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}