/* ================= RESET / BASE ================= */
.hero-text-mobile {
  display: none;
}

.contact-hover {
  position: relative;
  display: inline-block;
}

.contact-email {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: none;
  white-space: nowrap;
  z-index: 999;
}

.contact-hover:hover .contact-email {
  display: block;
}

.contact-hover:hover .contact-email {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-dark: #0a2e45;
  --blue-main: #0d6efd;
  --blue-light: #e9f4ff;
  --gray-text: #5a6472;
  --gray-border: #e6edf2;
  --bg-light: #f2f6f9;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: #00396A;
  line-height: 1.6;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100% - 40px);
  margin-inline: auto;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn--primary {
  background: #0A8DFF;
  color: #fff;
  box-shadow: none;
}

.btn--primary:hover {
  transform: translateY(-2px);
}

/* ================= NAV ================= */
.nav {
  border-bottom: 1px solid var(--gray-border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav__inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand {
  display: flex;
  align-items: center;
}

.brand__image {
  height: 34px;        /* prilagodi ako treba */
  width: auto;
  display: block;
}

.brand__logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2aa7ff, #0a2e45);
  color: #fff;
  display: grid;
  place-items: center;
}

.nav__links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
}

.nav__links a {
  padding-bottom: 4px;
}

.nav__links a:hover {
  border-bottom: 2px solid var(--blue-main);
}

/* ================= HERO ================= */
/*.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,46,69,.95) 0%, rgba(10,46,69,.8) 45%, rgba(10,46,69,.3) 75%),
    url("assets/hero.jpg") center / cover no-repeat;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 80px 0;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero__lead {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.hero__text {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 28px;
}

.hero__panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hero__panel span {
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 22px;
}*/
/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* Pozadinska slika + gradient overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /*linear-gradient(
      90deg,
      rgba(10, 46, 69, 0.92) 0%,
      rgba(10, 46, 69, 0.80) 30%,
      rgba(10, 46, 69, 0.55) 45%,
      rgba(10, 46, 69, 0.25) 60%,
      rgba(10, 46, 69, 0.05) 75%,
      rgba(10, 46, 69, 0.00) 100%
    ),*/
    url("img/Hero\ Image.png") 60% center / cover no-repeat;
}

/* Wrapper za tekst (da ide iznad slike) */
/*.hero__inner {
  position: relative;
  max-width: 620px;
}*/
.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* default */
}

.hero__inner {
  position: relative;
  max-width: 560px;
  margin-left: 0px;

  
}

/* Naslov */
.hero__content h1 {
  font-size: 33px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

/* Lead tekst */
.hero__lead {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 16px;
 
}

/* Dodatni tekst */
.hero__text {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 28px;
   
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner {
    max-width: 100%;
  }

  .hero__content h1 {
    font-size: 32px;
  }
}
/* ================= CHALLENGES – FULL BACKGROUND ================= */
/* ================= CHALLENGES – ISTO KAO HERO ================= */
/* ================= CHALLENGES (CLEAN) ================= */
/* ================= CHALLENGES ================= */
.challenges{
  position: relative;
  width: 100%;
 /* min-height: 520px;*/
  padding: 80px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  
  background-position: 500% center;  /* probaj 80%, 90%, 95% */


  background: url("img/Common\ chalenges17.png") center/cover no-repeat;
}

/* overlay da tekst bude citljiv */
.challenges::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;

  background: linear-gradient(
    to right,
    rgba(255,255,255,0.96) 0%,
    rgba(255,255,255,0.92) 38%,
    rgba(255,255,255,0.55) 58%,
    rgba(255,255,255,0.00) 78%
  );
}

/* content iznad pozadine */
.challenges__content{
  position: relative;
  z-index:2;

  max-width: 600px;
  margin-right: auto;

  transform: none; /* OBRISI pomeranje */
}

.challenges__content h2{
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #0a2c4a;
}

.challenges__content h2 span{
  color: #0d6efd;
}

.challenges__content p{
  font-size: 13px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0 0 12px;
}

/* responsive */
@media (max-width: 900px){
  .challenges{
    min-height: 460px;
    padding: 60px 0;
    background-position: 70% center;
  }

  .challenges__content{
    max-width: 92%;
    margin: 0 auto;
  }

  .challenges::before{
    background: rgba(255,255,255,0.92);
  }
}



/* ================= CHALLENGES ================= */
/*.challenges {
  padding: 70px 0;
}

.challenges__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.challenges h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.challenges h2 span {
  color: var(--blue-main);
}

.challenges p {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 10px;
}

.challenges__image img {
  border-radius: 16px;
}*/

/* ================= SECTION TITLES ================= */
.section-title {
  background: #00396A;
  color: #fff;
  text-align: center;
  padding: 14px 0;
  font-weight: 700;
  font-size: 20px;
  scroll-margin-top: 90px;
}

/* ================= SERVICES ================= */
.services {
  padding: 50px 0;
}

.services--alt {
  background: var(--bg-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service {
  text-align: center;
}


.service__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-weight: 800;
}
.service__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.service h3 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service p {
  font-size: 15px;
  color: var(--gray-text);
}

/* ================= SUCCESS ================= */
.success {
  width: 100%;

  position: relative;
  padding: 80px 0 160px;
  min-height: 800px;
  color: #fff;
  body { margin: 0; }
}

.success::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background-image: url("img/Backgorund\ image\ 2.png") ;
  background-repeat: no-repeat;
  background-position: center;
  /*background-size: 100% 150%;  <-- OVO je zoom-out */
  background-size: cover; 

   
}


.success__inner {
  position: relative;
  z-index: 2;
}

.success h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
}

.success__grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px;
}

.success__item {
  text-align: center;
}

.success__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.success__item h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.success__item p {
  font-size: 15px;
  opacity: 0.75;
}

/* ================= SPLIT (Solutions / Approach) ================= */
.split{
  background: #e9eef3;
  padding: 60px 0;
}

.split__inner{
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 40px;
  align-items: start;
}

.split__col h3{
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  color: #0a2c4a;
}

.split__col p{
  margin: 0 0 12px;
  color: #123a5e;
  line-height: 1.6;
  font-size: 13px;
}

.split__divider{
  width: 1px;
  background: #2a5f86;
  opacity: .7;
  height: 100%;
}

/* steps list */
.steps{
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 14px;
}

.steps__item{
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.steps__num{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: #0b4a78;
  margin-top: 2px;
}

.steps__text{
  color: #123a5e;
  font-size: 13px;
  line-height: 1.5;
}

.steps__text strong{
  color: #0a2c4a;
}

/* ================= ABOUT ================= */
html {
  scroll-behavior: smooth;
}

.about {
  scroll-margin-top: 90px; /* visina headera */
}

.about{
  background: #083b63;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.about__inner{
  max-width: 840px;
}

.about h2{
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 900;
}

.about p{
  margin: 0 auto 14px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  opacity: .85;
}

/* ================= FOOTER CTA ================= */


.footer{
  background: #2f2f2f;
  color: #fff;
  padding: 70px 0 30px;
  text-align: center;
}

.footer__logo{
  height: 44px;
  width: auto;
  margin: 0 auto 18px;
  display: block;
}

.footer h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}

.footer p{
  margin: 0 0 18px;
  font-size: 12px;
  opacity: .8;
}

.footer__copy{
  margin-top: 40px;
  font-size: 11px;
  opacity: .6;
}

/* Basic button (ako nemaš već) */
.btn{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
}

.btn--primary{
  background: #0b63a8;
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 860px){
  .split__inner{
    grid-template-columns: 1fr;
  }
  .split__divider{
    display: none;
  }
  .split{
    padding: 45px 0;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero__inner,
  .challenges__inner,
  .services__grid,
  .success__grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .nav__links {
    display: none;
  }
}
@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero__content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  /* sakrivamo tekst u hero-u na mobile */
  .hero__lead,
  .hero__text {
    display: none;
  }

  .hero .btn {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {

  /* sakrij tekst u hero-u */
  .hero__lead,
  .hero__text {
    display: none;
  }

  /* prikaži tekst ispod hero-a */
  .hero-text-mobile {
    display: block;
    padding: 32px 20px;
    background: #fff;
  }
}

