.hero {
    background-color: #222222;
    padding: 60px 0;
    background-image: url("image/Website\ pozadina\ black\ 2.0.png"); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Optional for parallax effect */
    margin: 0;
    padding: 20px;
  }
  
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  
  .hero-text {
    flex: 1 1 50%;
  }
  
  .hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fafbfb;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-image {
    flex: 1 1 40%;
  }
  
  .btn {
    background-color: #334b48ff;
    color: #cddadaff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #326f68ff;
  }
  
  .services-preview {
    background-color: #222222;
    padding: 60px 0;
    text-align: center;
    background-image: url("image/Website\ pozadina\ black\ 2.0.png"); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Optional for parallax effect */
    margin: 0;
    padding: 60px;
  }
  
  .services-preview h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fafbfb;
    margin-top: 0;
    padding-top: 40px; /* optional spacing if needed */
}
  
  .service-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .service {
    background: #161616;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    width: 300px;
    transition: transform 0.3s;
    height: 325px;
  }
  
  .service:hover {
    transform: translateY(-5px);
  }
  
  .service img {
  border-radius: 8px;
  margin-bottom: 15px;
  width: 100%;            /* Makes image scale to box width */
  height: 200px;          /* You can adjust this height as needed */
  object-fit: cover;      /* Ensures the image fills the height nicely */
}

  .service h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fafbfb;
  }

  .about-section {
    padding: 60px 0;
    background-color: #ffffff;
  }
  
  .about-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
  }
  
  .about-text {
    flex: 1 1 50%;
    font-size: 1.1rem;
  }
  
  .about-image {
    flex: 1 1 40%;
  }

  .services-grid {
    background: #f8f9fc;
    padding: 60px 0;
    text-align: center;
  }
  
  .services-grid h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .services-grid .intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #222222
  }
  
  .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .grid-item {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
  }
  
  .grid-item:hover {
    transform: translateY(-5px);
  }
  
  .grid-item img {
    width: 80px;
    margin-bottom: 15px;
  }

  .contact-section {
    background: #222222;
    padding: 80px 20px;
  }
  
  .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .contact-form {
    flex: 1 1 50%;
    background: #2b5b53ff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
  }
  
  .contact-form:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form h2 {
    margin-bottom: 25px;
    font-size: 2rem;
    color: #202020;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #334b48ff;
    outline: none;
  }
  
  .contact-form button {
    padding: 12px 25px;
    background-color: #334b48ff;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #005fa3;
  }
  
  .contact-info {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .contact-info img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  }
  
  .contact-info p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
  }

  .about-section {
    padding: 60px 20px;
    background: #222222;
    background-image: url("image/Website\ pozadina\ black\ 2.0.png"); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Optional for parallax effect */
    margin: 0;
    padding: 20;
  }
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .about-text {
    flex: 1 1 50%;
  }
  .about-image {
    flex: 1 1 40%;
  }
  .about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .about-text h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fafbfb;
  font-weight: 700;
}

  .services-page {
    padding: 60px 20px;
    background: #222222;
    background-image: url("image/Website\ pozadina\ black\ 2.0.png"); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Optional for parallax effect */
    margin: 0;
    padding: 0;
  }
  .service-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 3fr));
    gap: 50px;
  }
  .service-block {
    background: rgb(200, 200, 200);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(202, 10, 10, 0.05);
    transition: transform 0.2s ease;
  }
  .service-block:hover {
    transform: translateY(-5px);
  }
  .service-block img {
    width: 75%;
    border-radius: 20px;
    margin-bottom: 15px;
  }
  .service-block h3 {
    margin: 0px 0;
  }

  .services-page h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fafbfb;
  font-weight: 700;
}

.service-block-link {
  text-decoration: none;
  color: inherit;
}

.service-block {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 5px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.service-block:hover {
  transform: translateY(-5px);
}


 .language-dropdown {
  position: absolute;
  top: 30px;
  right: 40px;
  background-color: #222222;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  z-index: 10;
}

.language-dropdown label {
  font-size: 14px;
  font-weight: 600;
  color: #fafbfb;
  display: block;
  margin-bottom: 6px;
}

.language-dropdown select {
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid #00306a;
  border-radius: 8px;
  background-color: #ffffff;
  color: #00306a;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.language-dropdown select:hover,
.language-dropdown select:focus {
  border-color: #00306a;
  outline: none;
  box-shadow: 0 0 0 3px rgba(81, 134, 233, 0.2);
}

  body {
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  body.fade-in {
    opacity: 1;
  }
  
  #page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00306a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
  }
  
  #page-loader.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  .spinner {
    border: 4px solid #222222;
    border-top: 4px solid #161616;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  .contact-section {
    padding: 80px 20px;
    background: #cddadaff;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
    background: #00306a;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  }

  .contact-section {
    padding: 80px 20px;
    background: #222222;
    text-align: center;
    background-image: url("image/Website\ pozadina\ black\ 2.0.png"); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Optional for parallax effect */
    margin: 0;
    padding: 20;
  }
  
  .contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fafbfb;
  }
  
  .contact-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #fafbfb;
  }
  
  /* ==== Social Buttons ==== */
  .social-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    padding: 14px 26px;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 250px;
    justify-content: center;
  }
  
  .social-btn img {
    width: 24px;
    height: 24px;
  }
  
  
  .social-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
  }

  .social-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .social-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 28px;
    border-radius: 50px;
    background-color: #ffffff;
    border: 2px solid #0077cc;
    color: #0077cc;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .social-btn:hover {
    background-color: #0077cc;
    color: #ffffff;
  }
  
  .social-btn:hover .social-icon {
    filter: brightness(0) invert(1);
  }
  
  .social-icon {
    width: 38px;
    height: 38px;
    transition: filter 0.3s ease;
  }

  .social-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .social-btn {
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
  }
  
  .social-btn:hover {
    transform: translateY(-2px);
  }
  
  /* Platform-specific button styles */
  .insta {
    background-color: #2c2c2c;
    color: #e1306c;
    border-color: #e1306c;
  }
  
  .insta:hover {
    background-color: #e1306c;
    color: #ffffff;
  }
  
  .tiktok {
    background-color: #2c2c2c;
    color: #ffffff;
    border-color: #ffffff;
  }
  
  .tiktok:hover {
    background-color: #ffffff;
    color: #000000;
  }
  
  .facebook {
    background-color: #2c2c2c;
    color: #1877f2;
    border-color: #1877f2;
  }
  
  .facebook:hover {
    background-color: #1877f2;
    color: #ffffff;
  }

 .logo img {
  height: 100px;         /* or whatever size you want */
  margin: 3px 120px -100px 150px; /* top right bottom left */
  animation: none !important;
  transition: none !important;
  transform: none !important;
  opacity: 1 !important;
}

.team-section {
  padding: 60px 20px;
  background-color: #fafbfb;
  background-image: url("image/Website\ pozadina\ black\ 2.0.png"); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Optional for parallax effect */
    margin: 0;
    padding: 20;
}

.team-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.team-image img {
  width: 150%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-image video {
  width: 100%;
  height: 300px;
  border-radius: 12px; /* Optional: rounded corners */
  object-fit: cover;   /* Keeps aspect ratio and covers container */
  display: block;
}


.team-content {
  flex: 1;
  min-width: 300px;
}

.team-content h2 {
  font-size: 32px;
  color: #fafbfb;
  margin-bottom: 20px;
}

.team-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #fafbfb;
}

.meet-team-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background-color: #00306a;
  color: #fafbfb;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.meet-team-btn:hover {
  background-color: #161616;
}

.team-section {
  padding: 100px 10px;
  background: #222222;
  text-align: center;
  background-image: url("image/Website\ pozadina\ black\ 2.0.png"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Optional for parallax effect */
  margin: 0;
  padding: 20;
}

.team-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background: #161616;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 250px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.team-card h4 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #333;
}

.team-card p {
  color: #666;
  font-size: 0.95rem;
}

body {
  opacity: 1;
  transition: opacity 0.3s ease;
}

body.fade-out {
  opacity: 0;
}

 .services-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 40px 20px;
    }

    .service-block {
      flex: 1 1 calc(33.333% - 40px);
      max-width: 300px;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .service-block:hover {
      transform: translateY(-6px);
    }

    .service-block img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .service-block h3 {
      font-size: 18px;
      margin: 15px 0 10px;
    }

    .service-block p {
      font-size: 14px;
      padding: 0 15px 20px;
      color: #666;
    }

    @media (max-width: 992px) {
      .service-block {
        flex: 1 1 calc(50% - 40px);
      }
    }

    @media (max-width: 600px) {
      .service-block {
        flex: 1 1 100%;
      }
    }
  
    .hero-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

.services-preview {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.services-preview img {
  width: 300px;
  height: 175px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.services-preview img:hover {
  transform: scale(1.05);
}

.divider {
  margin: 40px auto;
  width: 60%;
  height: 2px;
  background-color: #00306a; 
  border: none;
  border-radius: 5px;
}





.order-form-section {
  background-color: #222222;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background-image: url("image/Website\ pozadina\ black\ 2.0.png"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Optional for parallax effect */
  margin: 0;
  padding: 20;
}

.form-container {
  background-color: #161616;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
  color: #fafbfb;
}

.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 2px solid #fafbfb; /* 💡 Border color */
  border-radius: 6px;
  font-size: 15px;
  background-color: #222222; /* 💡 Box background */
  color: #b9b9b9;
  transition: 0.3s ease;
  box-sizing: border-box;
}

/* On focus - glow */
.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
  outline: none;
  border-color: #00306a; /* 💡 Highlight color */
  box-shadow: 0 0 8px rgba(5, 7, 148, 0.3);
}

.form-container input::placeholder,
.form-container textarea::placeholder {
  color: #b9b9b9;              /* 🔵 Placeholder text color */
  opacity: 1;                  /* Makes sure it's not too transparent */
}

.form-container select {
  appearance: none;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px;
}

.dropdowns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.dropdown {
  flex: 1;
  min-width: 200px;
}

.dropdown label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-container button {
  background-color: #00306a;
  color: white;
  padding: 14px 0;
  width: 100%;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.form-container button:hover {
  background-color: #222222;
}

/* Container for side-by-side layout */
/* Wrapper to place dropdowns side by side */
.dropdown-wrapper {
  display: flex;
  flex-direction: row;     /* force horizontal */
  gap: 20px;               /* spacing between them */
  flex-wrap: nowrap;       /* prevent wrapping */
  margin-bottom: 20px;
}

/* Each dropdown box */
.custom-dropdown {
  width: 240px;
  position: relative;
  flex-shrink: 0;
  font-family: sans-serif;
}

/* Header area */
.dropdown-header {
  background-color: #222;
  color: #b9b9b9;
  padding: 10px 14px;
  border-radius: 6px;
  border: 2px solid #fafbfb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-header:hover {
  border-color: #00306a;
}

/* Dropdown list */
.dropdown-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
  background-color: #161616;
  border: 2px solid #444;
  border-top: none;
  border-radius: 0 0 6px 6px;
  padding: 10px;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* One row: checkbox left, label right */
.dropdown-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 20%; /* take full width */
  padding: 6px 4px;
  color: #b9b9b9;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
  white-space: nowrap;
}

.dropdown-options label:hover {
  background-color: #161616;
}

.dropdown-options input[type="checkbox"],
.dropdown-options input[type="radio"] {
  margin: 0;
  transform: scale(1.1);
  accent-color: #19897b;
}

.modal { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0, 0, 0, 0.6); 
  justify-content: center; 
  align-items: center; 
  z-index: 999; 
}

.modal.show {
  display: flex;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  width: 1275px;
  max-width: 100%;
  height: 94vh;
  background: #00306a;
  padding: 10px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow-y: auto;
  position: relative;
  overflow: hidden; /* disable scrolling here */
  animation: fadeInScale 0.4s ease;
  background-image: url("image/Pattern\ novo\ crno\ tekstura.png"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Optional for parallax effect */
  margin: 0;
  padding: 20;
}

/* Header */
.modal-header {
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  color: #fff;
  font-size: 13px;
}
 
 .modal-body {
 flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* Optional: add min-height for consistency */
  min-height: 0;
  margin-bottom: 40px;
}

.modal-image {
  flex: 0 0 40%;
}

.modal-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.modal-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
}

.modal-footer {
  flex-shrink: 0;
  position: absolute;    /* So we can pin it to the edges */
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;         /* Adjust as needed */
  background-color: #161616;
  overflow: hidden;
  z-index: 10;           /* Makes sure it stacks properly */
}

.modal-footer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Layer content above the video */
.modal-footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
}


/* Close Button */
.back-arrow {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  z-index: 10;
}

/* Animation */
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.order-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background-color: #ffffff;
  color: #00306a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}

.order-button:hover {
  background-color: #0059b3;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-y: auto;
}
body.modal-open {
  overflow: hidden;
}

.faq-container {
  padding: 40px;
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #fff;
}

.faq-item {
  background-color: #111;
  border: 1px solid #333;
  padding: 8px;
  border-radius: 8px;
}


.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #b9b9b9;
}

.faq-question .plus {
  font-size: 26px;
  color: #fff;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #ccc;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 10px;
}

.faq-item.active .plus {
  transform: rotate(45deg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Force 3 items per row */
  gap: 10px;
}
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(1, 1fr); /* Stack vertically on smaller screens */
  }
}

.card-intro {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}
.circle-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.order-link {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  text-decoration: none; /* This removes the underline */
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  z-index: 10;
}


.video-divider {
  position: relative;
  width: 100%;
  height: 100px; /* You can adjust this height */
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video fills the area */
}

.custom-request-section {
  background-color: #111;
  padding: 50px 20px;
  text-align: center;
  margin-top: 40px;
  border-radius: 12px;
  color: white;
  background-image: url("image/Website\ pozadina\ black\ 2.0.png"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Optional for parallax effect */
  margin: 0;
  padding: 20px;
}

.custom-request-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.custom-request-section p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ccc;
}

.custom-request-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.custom-request-form input,
.custom-request-form textarea {
  width: 100%;
  max-width: 600px;
  padding: 15px;
  background-color: #222;
  color: white;
  border: 1px solid #555;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 16px;
}

.custom-request-form textarea {
  min-height: 120px;
  resize: vertical;
}

.custom-request-form button {
  background-color: #111;
  color: white;
  padding: 14px 40px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.custom-request-form button:hover {
  background-color: #00306a
;
}

.error-message {
  color: #f55;
  font-size: 14px;
  margin: -10px 0 10px;
  display: none;
  text-align: left;
  width: 100%;
  max-width: 600px;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #161616;
    color: #fafbfb;
    margin: 0;
    padding: 0;
  }
  
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header {
    align-items: flex-start;
    background-color: #00306a;
    color: white;
    padding: 20px 0;
  }
  
  header h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #161616
  }
  
  main {
    padding: 60px 0;
    text-align: center;
  }
  
  main h2 {
    color: #fafbfb;
    margin-bottom: 20px;
    font-size: 2rem;
  }
  
  main p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  footer {
    background-color: #00306a;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
  }
  
  form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  button {
    background-color: #334b48ff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  button:hover {
    background-color: #334b48ff;
  }
  img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 575.98px) {
  .container {
    padding: 0 10px;
    width: 100%;
  }

  header h1,
  main h2,
  .about-section h2,
  .team-content h2,
  .form-container h2 {
    font-size: 1.5rem;
  }

  .hero-content,
  .about-content,
  .team-container,
  .contact-grid {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .dropdown-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .language-dropdown {
    position: static;
    margin: 10px auto;
    text-align: center;
  }

  .logo img {
    height: 80px;
    margin: 10px auto;
  }

  .social-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .service-block,
  .service {
    width: 100% !important;
  }

  .modal-content {
    width: 95%;
    height: auto;
    padding: 10px;
  }

  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-text h2,
  .about-text h2,
  .services-page h2 {
    font-size: 1.6rem;
  }

  .hero-text p,
  .about-text p {
    font-size: 0.95rem;
  }

  .form-container input,
  .form-container select,
  .form-container textarea {
    font-size: 0.95rem;
  }

  .modal-footer {
    height: 80px;
  }

  .hero-image img {
    max-height: 220px;
    object-fit: contain;
  }
}

/* Small Devices (landscape phones and small tablets, less than 768px) */
@media (max-width: 767.98px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .dropdown-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .team-image img {
    width: 100%;
    max-width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .team-cards {
    gap: 20px;
  }
}

/* Medium Devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .team-image img {
    width: 100%;
    max-width: 100%;
  }

  .hero-image img {
    max-height: 300px;
  }

  .modal-content {
    width: 95%;
    height: auto;
  }
}

/* Large Devices (laptops/desktops) */
@media (min-width: 992px) {
  .modal-content {
    height: 90vh;
  }

  .dropdown-wrapper {
    flex-wrap: nowrap;
  }
} /* END */
