
*{

  font-style: normal;
}

body {
  overflow-x: hidden;
}


.navbar {
  transition: all 0.3s ease;
}

.navbar .nav-link {
  font-weight: 500;
  color: #333;
  position: relative;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #007BFF;
}

/* Dropdown styling */
/* Osnovni stilovi */
.dropdown-menu {
  background-color: #f8f9fa;
  border: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 0.5rem 0;
  display: none;
}

.dropdown-item {
  padding: 10px 20px;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(0, 123, 255, 0.07);
  color: #007BFF;
}

/* Hover behavior only on desktop */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .dropdown:hover > .nav-link .dropdown-arrow {
    transform: rotate(180deg);
  }
}

nav img {
  width: 100%;

}

nav img {
  max-width: 160px;
  height: auto;
}

@media (max-width: 768px) {
  nav img {
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  nav img {
    max-width: 150px;
  }
}


.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 20px;
  position: relative;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  display: flex;
  background-image: url('../img/gif4.gif');
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* tamni overlay */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

.hero-btn {
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.services {
  background: linear-gradient(to bottom, #e0f0ff, #ffffff);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.service-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #111;
}

.service-desc {
  font-size: 1rem;
  color: #555;
  font-family: 'Inter', sans-serif;
}

.service-icon i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
  transform: scale(1.2);
}

.why-us {
  background: #f5faff;
}

.why-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.why-list li {
  font-size: 1rem;
  color: #444;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.why-list i.why-icon {
  min-width: 32px;
  background: linear-gradient(135deg, #58a6ff, #004b9b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.why-list strong {
  font-weight: 600;
}

.why-list em {
  font-style: italic;
  color: #007bff;
}

.why-us .btn {
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.why-us .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.2);
}

/* Mobilni padding */
@media (max-width: 768px) {
  .why-us .col-lg-6:first-child {
    padding-bottom: 2rem;
  }
}

.cta-section {
  background-image: url('assets/img/cta-bg.jpg'); /* zameni sa svojom slikom */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 400px;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.cta-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.about-mini {
  background: #f8faff;
}

.about-title {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.about-text {
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-mini .btn {
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-mini .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.2);
}

.contact-form-section {
  background: linear-gradient(to bottom right, #f0f7ff, #ffffff);
}

.form-wrapper {
  max-width: 720px;
  background-color: #fff;
  border: 1px solid #e0eafc;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.form-label {
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #444;
}

.form-control,
.form-select {
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
}

textarea.form-control {
  resize: none;
}

button[type="submit"] {
  font-weight: 600;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 123, 255, 0.2);
}

.footer {
  background: linear-gradient(to right, #001f3f, #003366);
  color: #f0f4ff;
}

.footer h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.footer p, .footer li, .footer a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-link {
  color: #f0f4ff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-link:hover {
  color: #00bfff;
  text-decoration: underline;
}

.footer .fa-chevron-right {
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer .fa-code {
  color: #00bfff;
}

@media (max-width: 768px) {
  .footer .col-md-4 {
    text-align: center;
  }

  .footer .col-md-4 ul {
    padding-left: 0;
  }
}

/* Hero sekcija za unutrašnje stranice */
.page-hero {
  /* background: linear-gradient(to right, #004b9b, #007bff); */
  background-image: url('../img/ban4.jpg');
  background-position: center;
  background-size: cover;
  color: white;
  padding: 60px 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.breadcrumb {
  background: transparent;
  font-family: 'Inter', sans-serif;
}

.breadcrumb a {
  color: #ffffffcc;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #ffffff;
  font-weight: 600;
}

/* Sekcija "O nama" */
.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.about-content p {
  font-size: 1.05rem;
  color: #444;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
}

/* Sekcija tim */
.team-section {
  background: #f8f9fa;
}

.team-section h2 {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.card-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .page-title {
    font-size: 1.75rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

.ai-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #003366;
}

.ai-intro p {
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  color: #444;
  line-height: 1.75;
}


.ai-benefits h2 {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #003366;
}

.ai-benefits .lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #555;
}

.benefit-card {
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 1rem;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon i {
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
  transform: scale(1.2);
}

.ai-quiz {
  background: linear-gradient(to bottom right, #edf5ff, #ffffff);
}

.ai-quiz h2 {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.ai-quiz p {
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  color: #444;
}

.quiz-step {
  transition: opacity 0.3s ease;
}

.answer-btn {
  margin: 0.5rem;
  min-width: 100px;
}

.blog-hero {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-image: url('../img/ban1.jpg');
}

.blog-hero .overlay {
  backdrop-filter: blur(1px);
}

.blog-article p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  font-family: 'Inter', sans-serif;
}

.blog-article h2 {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #003366;
}

.blog-tags .badge {
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}
.blog-breadcrumb {
  background: #00264d; /* tamna teget */
  color: #fff;
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.4);
}

.blog-breadcrumb a {
  color: #ffffffcc;
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #ffffff;
  font-weight: 600;
}


.contact-icon i {
  font-size: 2rem;
  background: linear-gradient(to right, #004b9b, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-box,
.form-box {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-box p,
.form-box p,
.form-box label {
  font-family: 'Inter', sans-serif;
  color: #444;
}

.contact-box h2,
.form-box h2 {
  font-family: 'Poppins', sans-serif;
  color: #003366;
  font-weight: 700;
}

.form-control,
textarea.form-control {
  border-radius: 0.5rem;
}


.par{
  background-image: url('../img/ban3.jpg');
}

.about-img {
  border-radius: 15px 0 15px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.section-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #999;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.section-title {
  color: #004b9b;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  font-family: 'Inter', sans-serif;
  color: #444;
}

.team-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #003366;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.team-link:hover {
  color: #00bfff;
  transform: scale(1.05);
}

.team-link i {
  margin-bottom: 0.5rem;
  color: #004b9b;
}

.team-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.team-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #003366;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.team-link:hover {
  color: #00bfff;
  transform: scale(1.05);
}

.team-link i {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #004b9b;
}

/* Divider */
.team-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #ccc, transparent);
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Slike */
.team-img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-img:hover {
  transform: scale(1.02);
}

/* Naslovi i tekst */
.team-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 1rem;
}

.team-section p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
}

/* Responsive mini meni fix */
@media (max-width: 576px) {
  .team-link {
    min-width: 50px;
    font-size: 0.65rem;
    margin: 0 0.25rem;
  }

  .team-link i {
    font-size: 1rem;
  }

  .team-nav .d-flex {
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 576px) {
  .team-link {
    min-width: 50px;
    font-size: 0.65rem;
    margin: 0 0.25rem;
  }

  .team-link i {
    font-size: 1rem;
  }

  .team-nav .d-flex {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 577px) {
  .team-nav .d-flex {
    overflow: visible !important;
  }
}


/* ===== WEB RAZVOJ SEKCIJA ===== */
.web-intro h2,
.web-benefits h2,
.web-quiz h2 {
  color: #198754; /* Bootstrap zelena */
}

.benefit-card.green-theme {
  border: 1px solid rgba(25, 135, 84, 0.15);
  background: #fff;
  transition: all 0.3s ease;
}

.benefit-card.green-theme:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(25, 135, 84, 0.2);
}

.benefit-card.green-theme i {
  color: #198754 !important;
}

/* ===== KVIZ STIL ===== */
.web-quiz {
  background: linear-gradient(to bottom, #f0fdf4, #ffffff);
}

#quiz-container {
  max-width: 600px;
  margin: auto;
}

.quiz-step {
  margin-bottom: 2rem;
}

.answer-btn {
  min-width: 120px;
  margin: 0.5rem;
  font-weight: 500;
}

#quiz-result {
  margin-top: 2rem;
}

#quiz-result h3 span {
  color: #198754;
  font-weight: bold;
}

/* ===== IT OPREMA SEKCIJA ===== */
.it-intro h2,
.it-benefits h2,
.it-quiz h2 {
  color: #dc3545; /* Bootstrap danger crvena */
}

.benefit-card.red-theme {
  border: 1px solid rgba(220, 53, 69, 0.15);
  background: #fff;
  transition: all 0.3s ease;
}

.benefit-card.red-theme:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 53, 69, 0.2);
}

.benefit-card.red-theme i {
  color: #dc3545 !important;
}

/* ===== KVIZ ===== */
.it-quiz {
  background: linear-gradient(to bottom, #fff5f5, #ffffff);
}

#quiz-container {
  max-width: 600px;
  margin: auto;
}

.quiz-step {
  margin-bottom: 2rem;
}

.answer-btn {
  min-width: 120px;
  margin: 0.5rem;
  font-weight: 500;
}

#quiz-result {
  margin-top: 2rem;
}

#quiz-result h3 span {
  color: #dc3545;
  font-weight: bold;
}

