* { margin:0; padding:0; box-sizing:border-box; }
body, html { font-family: 'Montserrat', serif; width:100%; overflow-x:hidden; }
/* NAVBAR */
.navbar {
  width: 100%;
  background: #141415;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1900px;
  margin: 0 auto;
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

.lang {
  font-weight: 600;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 991px) {

  .nav-container {
    padding: 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
    gap: 30px;
    transition: 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links a {
    color: #0A141F;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: 700;
  }

  .nav-links a:hover {
    background: #f3f3f3;
  }

}

/* HEADER */
.header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:40px 100px;
  position:absolute;
  width:100%;
  top:0;
  left:0;
  z-index:10;
}


/* HERO */
.hero {
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:100px;
  overflow:hidden;
  min-height:100vh;
}

/* Hero slider slike */
.hero-slider .slide {
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
}
.hero-slider .slide.active { opacity:1; }

.hero-content {
  max-width: 1800px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 5;
}

/* Naslov i podnaslov */
.naslov { 
  font-size:clamp(32px,5vw,48px); 
  font-weight:600; 
  padding-top:350px;
}
.podnaslov { 
  font-size:clamp(18px,2.5vw,24px); 
  font-weight:500;
  max-width: 1200px;
  line-height: 1.4;
}

.work-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
  width: fit-content;
  transition: all 0.3s ease;
  cursor: pointer;
}
.work-btn:hover { background-color: #f0f0f0; }

.work-btngreen {
  max-width: 150px;
  padding: 10px 20px;
  background-color: #77CC00;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
  position: absolute;
  margin-top: 20px;
}
.work-btngreen:hover { background-color: #f0f0f0; }


/* WHAT WE DO SECTION */
.what-we-do {
  background:#f7f7f7;
  padding:60px;
}
.projects {
  background:#fff;
  padding:100px;
  padding-top: 0px;
  color: #fff;
}
.section-title {
  font-size:32px;
  font-weight:700;
  margin-bottom:40px;
  color: #0A141F;
}

/* Boxes */
.boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1900px;
}

.box {
  background:#141415;
  border-radius: 12px;
  border: 0.3px solid #fff;
  flex: 1 1 200px;
  min-width: 200px;
  padding: 40px;
  opacity: 0;
  transform:translateY(-5px);
  animation: fadeInUp 0.8s forwards;
}
.box-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
}

.box p {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
}


.box:hover {
  background:#141415;
  transform: translateY(-5px);
  transition: 0.3s ease;
}

/* INFO SECTIONS */
.info-section {
  background:#f7f7f7;
  padding:100px;
  padding-top:60px;
  padding-bottom:60px;

}
.info-section3 {
  background:#f7f7f7;
  /*padding:100px;
  padding-top:60px;
  padding-bottom:60px;*/

}
/* INFO SECTIONS */
.info-section2 {
  background:#141415;
  padding:100px;
  padding-top:200px;
}


.info-content {
  max-width: 1800px;
  margin: 0 auto;
  display:flex;
  gap:60px;
  align-items:center;
  color: #0A141F;

}

.info-content.reverse {
  flex-direction: row-reverse;
}

.info-img {
  width:32%;
  border-radius:16px;
}

}
.info-img2 {
  width:100%;
  border-radius:16px;
}
.info-text {
  width:55%;
}

.info-text h3 {
  font-size:32px;
  margin-bottom:15px;
  color: #0A141F;
}

.info-text p {
  font-size:18px;
  line-height:1.6;
  margin-bottom: 20px;
  color: #0A141F;
}

.info-text2 h3 {
  font-size:32px;
  margin-bottom:15px;
  color: #fff;
  font-weight:600;
}

.info-text2 p {
  font-size:18px;
  line-height:1.6;
  margin-bottom: 20px;
  color: #fff;
}

/* ANIMACIJA FADE-IN-UP */
.animated { opacity:0; transform:translateY(30px); animation: fadeInUp 0.8s forwards; }
@keyframes fadeInUp { to { opacity:1; transform:translateY(0); } }

/* RESPONSIVE */
@media(max-width:767px){
  .header{padding:20px;}
  .hero{padding:40px 20px;}
  .logo{width:150px;}
  .naslov{font-size:28px;padding-top:140px;}
  .podnaslov{font-size:18px;}

  .what-we-do{padding:80px 20px;}
  .projects{padding:0px 20px;}
  .section-title{font-size:28px;}
  .info-text h3{font-size:28px;color: #fff;}
  .info-text2 h3{font-size:28px;color: #fff;}
  .boxes{flex-direction:column;}
  .boxanimated2 p {font-size: 16px; line-height: 1.4;color: #0A141F; margin-bottom: 40px;
}
  .work-btn {max-width: 185px;}
  .info-section{padding:60px 20px; padding-bottom:60px}
  .info-section2{padding:80px 20px; padding-bottom:60px}
  .info-content{flex-direction:column;}
  .info-content.reverse{flex-direction:column;}
  .info-img{width:100%;}
  .info-text{width:100%;}
}
/* FOOTER */
.footer {
  background:#141415;
  color:#fff;
  padding:100px 100px 40px;
}

.footer-content {
  max-width:1800px;
  margin:0 auto;
}

.footer-info-group {
  display:flex;
  align-items:flex-start;
}

.footer-left {
  display:flex;
  flex-direction:column;
  gap:30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.footer-columns {
  display:flex;
  gap:80px; /* razmak između Company Information i Follow us */
  align-items:flex-start;
}

.company-info,
.footer-right {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.company-info { animation-delay: 0.2s; }
.footer-right { animation-delay: 0.4s; }

.footer-logo {
  width:150px;
}

.footer-left h4,
.footer-right h4 {
  font-size:18px;
  margin-bottom:15px;
}

.footer-left p {
  font-size:16px;
  line-height:1.6;
  color:#ccc;
}

.social-icons {
  display:flex;
  gap:20px;
}

.social-icons img {
  width:28px;
  height:28px;
  transition:0.3s ease;
  filter:brightness(0) invert(1);
}

.social-icons a:hover img {
  transform:translateY(-4px);
  opacity:0.8;
}

/* Footer bottom */
.footer-bottom {
  margin-top:60px;
  text-align:center;
  font-size:14px;
  color:#aaa;
}

/* RESPONSIVE FOOTER */
@media(max-width:767px){
  .footer {
    padding:60px 20px 30px;
  }

  .footer-columns {
    flex-direction:column;
    gap:40px;
  }

  .footer-logo {
    width:150px;
  }

  .footer-left h4,
  .footer-right h4 {
    font-size:16px;
  }

  .footer-left p {
    font-size:15px;
  }

  .social-icons img {
    width:26px;
    height:26px;
  }

  .footer-bottom {
    margin-top:40px;
    font-size:13px;
  }
}

/* Instagram in-app browser fallback */
/*body.ig-browser * {
  animation: none !important;
  transition: none !important;
}*/

/*body.ig-browser .hero-slider .slide {
  opacity: 1 !important;
  position: relative;
  height: auto;
}*/

/*body.ig-browser .box {
  opacity: 1 !important;
  transform: none !important;
}*/





AGRICULTURE CSS 
.page-hero {
  padding:120px 20px 60px;
  text-align:center;
  background:#fff;
}

.page-hero h1 {
  font-size:42px;
  margin-bottom:20px;
  color: #0A141F;
}

.page-hero p {
  max-width:800px;
  margin:0 auto;
  font-size:18px;
  line-height:1.6;
  color: #0A141F;
}

.section {
  background:#141415
}

.section.light {
  background:#141415;
}

.container {
  max-width:1900px;
  margin:0 auto;
  padding:100px;
}

.container1 {
  max-width:1900px;
  margin:0 auto;
  padding:100px;
  padding-top:100px;
}

.containermain {
  max-width:1900px;
  margin:0 auto;
  padding:100px;
  padding-top:60px;
  padding-bottom: 60px;
}

.section h2 {
  font-size:32px;
  margin-bottom:20px;
  color: #fff;
  font-weight:600;
}
.section p {
  font-size:18px;
  /*margin-bottom:20px;*/
  color: #fff;
  line-height:1.6;
}
.section-intro {
  max-width:700px;
  margin-bottom:40px;

}

.grid-boxes {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:30px;
}

.grid-item {
  text-align:center;
  transition:0.3s ease;
}

.grid-item img {
  width:100%;
  height:auto;
  object-fit:contain;
  border-radius:12px;
  margin-bottom: 20px;
}

.grid-item h3 {
  font-size:20px;
  color:#fff;
}
.grid-item p {
  font-size:18px;
  margin-top: 12px;
}
.grid-item:hover {
  transform:translateY(-5px);
}

.logos img {
  width:100%;
  height:225px;
  object-fit:cover;
  background:#fff;
}
/* RESPONSIVE */
@media(max-width:767px){
  .container{
    padding:60px 20px 20px;
  }
  .container1{
    padding:20px 20px 20px;
  }
  .containermain{
    padding:60px 20px 30px;
  }
  .logos img {
  width:100%;
  height:auto;
  object-fit:cover;
  background:#fff;
}
.section h2 {
  font-size:28px;
  margin-bottom:20px;
  color: #fff;
}
.grid-item p {
  font-size:18px;
  margin-top: 12px;
  padding-bottom: 40px;
}