*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.header{
background:white;
padding:20px 0;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:28px;
font-weight:bold;
}

nav a{
text-decoration:none;
margin-left:25px;
color:#0f2940;
font-weight:600;
}

.hero{
height:700px;
background:
linear-gradient(
rgba(5,25,45,.25),
rgba(5,25,45,.25)
),
url('../images/hero.jpg');

background-size:cover;
background-position:center;
position:center;
}

.overlay{
height:100%;
background:rgba(5,25,45,.75);
display:flex;
align-items:center;
}

.hero-content{
width:90%;
max-width:1200px;
margin:auto;
color:white;
}

.hero h1{
font-size:60px;
max-width:700px;
margin-bottom:25px;
}

.hero p{
font-size:22px;
max-width:650px;
margin-bottom:35px;
}

.buttons{
display:flex;
gap:15px;
}

.btn-primary{
background:#d8a03a;
color:white;
padding:15px 30px;
text-decoration:none;
font-weight:bold;
}

.btn-secondary{
border:2px solid white;
color:white;
padding:15px 30px;
text-decoration:none;
font-weight:bold;
}
.stats{
background:#0c2238;
padding:40px 0;
color:white;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;
}

.stat-box h3{
font-size:32px;
color:#d8a03a;
margin-bottom:10px;
}

.stat-box p{
font-size:15px;
}
.site-header{
background:#ffffff;
height:76px;
display:flex;
align-items:center;
box-shadow:0 2px 12px rgba(0,0,0,.06);

position:sticky;
top:0;

z-index:9999;
}

.header-container{
width:90%;
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:42px;
display:block;
}

.main-nav{
display:flex;
align-items:center;
gap:30px;
}

.main-nav a{
text-decoration:none;
color:#0b1f33;
font-size:14px;
font-weight:700;
text-transform:uppercase;
letter-spacing:.3px;
}

.main-nav a:hover{
color:#d8a03a;
}

.header-btn{
background:#d8a03a;
color:#ffffff;
padding:13px 22px;
text-decoration:none;
font-size:13px;
font-weight:800;
text-transform:uppercase;
border-radius:3px;
}
.solutions{
padding:90px 0;
background:#ffffff;
text-align:center;
}

.solutions h2{
font-size:42px;
color:#0b1f33;
margin-bottom:50px;
font-weight:800;
}

.solutions-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.solution-card{
background:#ffffff;
padding:40px 30px;
border:1px solid #e5e7eb;
border-radius:8px;
transition:.3s ease;
}

.solution-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.solution-card .icon{
font-size:42px;
color:#d8a03a;
margin-bottom:20px;
}

.solution-card h3{
font-size:20px;
color:#0b1f33;
line-height:1.4;
margin-bottom:12px;
font-weight:700;
}

.solution-card p{
font-size:14px;
line-height:1.7;
color:#6b7280;
}
.cta-section{
background:linear-gradient(
135deg,
#0f2940 0%,
#123453 100%
);
padding:80px 0;
}

.cta-content{
display:flex;
justify-content:space-between;
align-items:center;
gap:50px;
}

.cta-text{
max-width:750px;
}

.cta-text h2{
color:white;
font-size:38px;
line-height:1.2;
margin-bottom:20px;
font-weight:800;
}

.cta-text p{
color:#c8d2dc;
font-size:18px;
line-height:1.7;
}

.cta-button{
flex-shrink:0;
}
.why-us{
padding:80px 0;
background:#f5f7fa;
}

.why-us h2{
text-align:center;
font-size:30px;
color:#0b1f33;
margin-bottom:45px;
font-weight:800;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
align-items:stretch;
}

.why-card{
background:#ffffff;
padding:35px 25px;
border-radius:6px;
box-shadow:0 8px 25px rgba(0,0,0,.06);

display:flex;
flex-direction:column;
align-items:center;
text-align:center;

height:100%;
min-height:260px;
}

.why-card h3{
font-size:18px;
color:#0b1f33;
margin-bottom:15px;

min-height:44px;

display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.why-card p{
font-size:15px;
line-height:1.7;
color:#4a5563;
}
.page-hero{
padding:90px 0;
background:linear-gradient(rgba(5,25,45,.65), rgba(5,25,45,.65)), url('../images/about-hero.jpg');
background-size:cover;
background-position:center;
color:white;
}

.page-hero h1{
font-size:42px;
max-width:750px;
line-height:1.2;
margin-bottom:15px;
}

.page-hero p{
color:#d8a03a;
font-weight:700;
}
.about-story{
padding:100px 0;
background:#fff;
}

.about-story-grid{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:60px;
align-items:center;
}

.about-text h2{
font-size:42px;
color:#0b1f33;
margin-bottom:25px;
}

.about-text p{
font-size:17px;
line-height:1.9;
color:#4a5563;
margin-bottom:20px;
}

.about-photo img{
width:100%;
height:auto;
display:block;
border-radius:10px;
box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.business{
padding:100px 0;
background:#f8fafc;
text-align:center;
}

.business h2{
font-size:42px;
color:#0b1f33;
margin-bottom:10px;
}

.section-subtitle{
font-size:18px;
color:#6b7280;
margin-bottom:50px;
}

.business-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    align-items:stretch;
}

.business-card{
    background:#fff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    min-height:260px;
    height:100%;
}

.business-card h3{
    font-size:20px;
    color:#0b1f33;
    margin-bottom:15px;

    height:85px;
    line-height:1.3;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.business-card p{
    font-size:15px;
    line-height:1.8;
    color:#4a5563;

    flex:1;
    margin:0;
    text-align:center;
}
/* USLUGE STRANICA */

.usluge-hero{
background:linear-gradient(rgba(5,25,45,.70), rgba(5,25,45,.70)),
url('../images/hero.jpg');
background-size:cover;
background-position:center;
}

.services-list{
padding:80px 0;
background:#f6f8fb;
}

.service-item{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:35px;
align-items:center;
background:#ffffff;
padding:28px;
margin-bottom:28px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.07);
}

.service-text h2{
font-size:28px;
color:#0b1f33;
margin-bottom:15px;
text-transform:uppercase;
}

.service-text p{
font-size:16px;
line-height:1.8;
color:#4a5563;
max-width:650px;
}

.service-item img{
width:100%;
height:240px;
object-fit:cover;
border-radius:8px;
display:block;
}

/* Svaka druga sekcija - slika levo, tekst desno */
.service-item:nth-child(even) .service-text{
order:2;
}

.service-item:nth-child(even) img{
order:1;
}

/* Responsive */
@media(max-width:768px){

.service-item{
grid-template-columns:1fr;
}

.service-item:nth-child(even) .service-text{
order:1;
}

.service-item:nth-child(even) img{
order:2;
}

.service-text h2{
font-size:24px;
}

}
/* BLOG STRANICA */

.blog-section{
padding:80px 0;
background:#f6f8fb;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.blog-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.07);
display:flex;
flex-direction:column;
}

.blog-card img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.blog-content{
padding:25px;
display:flex;
flex-direction:column;
height:100%;
}

.blog-category{
display:inline-block;
font-size:12px;
font-weight:800;
color:#d8a03a;
margin-bottom:12px;
}

.blog-content h3{
font-size:22px;
line-height:1.3;
color:#0b1f33;
margin-bottom:15px;
}

.blog-content p{
font-size:15px;
line-height:1.7;
color:#4a5563;
margin-bottom:18px;
}

.read-more-btn{
background:#d8a03a;
color:#fff;
border:none;
padding:12px 20px;
font-weight:800;
cursor:pointer;
border-radius:4px;
}
.read-more-btn{
margin-top:auto;
}
.blog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
align-items:stretch;
}

.blog-full-text{
display:none;
margin-top:20px;
padding-top:20px;
border-top:1px solid #e5e7eb;
}

.blog-card.active .blog-full-text{
display:block;
}
/* FOOTER */

.site-footer{
background:#071f35;
color:#c8d2dc;
padding:60px 0 0;
}

.footer-grid{
display:grid;
grid-template-columns:1.4fr 1fr 1.2fr 1.3fr;
gap:45px;
}

.footer-logo{
height:45px;
margin-bottom:18px;
}

.footer-col h4{
color:#ffffff;
font-size:16px;
margin-bottom:20px;
text-transform:uppercase;
}

.footer-col p{
font-size:14px;
line-height:1.8;
margin-bottom:12px;
}

.footer-col a{
display:block;
color:#c8d2dc;
text-decoration:none;
font-size:14px;
margin-bottom:10px;
}

.footer-col a:hover{
color:#d8a03a;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.12);
margin-top:45px;
padding:18px 0;
text-align:center;
}

.footer-bottom p{
font-size:13px;
color:#9fb0bf;
}
/* KONTAKT STRANICA */

.kontakt-hero{
background:linear-gradient(rgba(5,25,45,.70), rgba(5,25,45,.70)),
url('../images/hero.jpg');
background-size:cover;
background-position:center;
}

.contact-page{
padding:90px 0;
background:#f6f8fb;
}

.contact-layout{
display:grid;
grid-template-columns:1.4fr .8fr;
gap:40px;
align-items:start;
}

.contact-form-box,
.contact-info-box{
background:#fff;
padding:45px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.07);
}

.contact-form-box h2,
.contact-info-box h2{
font-size:24px;
color:#0b1f33;
margin-bottom:30px;
font-weight:800;
}

.contact-form-box form{
display:flex;
flex-direction:column;
gap:18px;
}

.contact-form-box input,
.contact-form-box textarea{
width:100%;
padding:16px;
border:1px solid #d7dde5;
border-radius:5px;
font-size:15px;
font-family:Arial,sans-serif;
}

.contact-form-box textarea{
min-height:170px;
resize:vertical;
}

.contact-form-box button{
background:#d8a03a;
color:#fff;
border:none;
padding:16px 28px;
font-weight:800;
cursor:pointer;
border-radius:4px;
width:220px;
}

.info-item{
margin-bottom:24px;
padding-bottom:18px;
border-bottom:1px solid #e5e7eb;
}

.info-item strong{
display:block;
font-size:15px;
color:#d8a03a;
margin-bottom:8px;
text-transform:uppercase;
}

.info-item p{
font-size:15px;
line-height:1.7;
color:#4a5563;
}

.mini-map{
margin-top:20px;
border-radius:8px;
overflow:hidden;
}

@media(max-width:768px){
.contact-layout{
grid-template-columns:1fr;
}

.contact-form-box button{
width:100%;
}
}
/* REFERENCE */

.references{
padding:90px 0;
background:#ffffff;
overflow:hidden;
}

.references h2{
text-align:center;
font-size:38px;
color:#0b1f33;
margin-bottom:10px;
font-weight:800;
}

.references p{
text-align:center;
color:#6b7280;
margin-bottom:50px;
font-size:17px;
}

.logo-carousel{
overflow:hidden;
width:100%;
position:relative;
}

.logo-track{
display:flex;
align-items:center;
gap:30px;
width:max-content;
animation:logoScroll 55s linear infinite;
}

.logo-track img{
width:180px;
height:100px;
object-fit:contain;
background:#fff;
padding:15px;
border:1px solid #ececec;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

@keyframes logoScroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}
.main-nav a.active{
color:#d8a03a;
position:relative;
}

.main-nav a.active::after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:100%;
height:2px;
background:#d8a03a;
}
.about-text br{
    display:block;
    margin-bottom:18px;
    content:"";
}
.dashboard-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin:35px 0 40px;
}

.stat-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:25px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.stat-box h2{
    margin:0;
    font-size:40px;
    color:#0b1f33;
}

.stat-box p{
    margin:8px 0 0;
    color:#666;
    font-weight:bold;
}
.admin-sidebar a.active{
    background:#0b1f33;
    color:#fff;
}