  @font-face {
    font-family: 'DINProCondensed';
    src: url('fonts/DINPro-CondensedRegular.woff2') format('woff2'),
         url('fonts/DINPro-CondensedRegular.woff') format('woff'),
         url('fonts/DINPro-CondensedRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }	
	html {
  		scroll-behavior: auto;
	}
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'DINProCondensed', sans-serif;
      background: #fff;
      color: #000;
      line-height: 1.6;
    }
    header {
      background: #000;
      color: #fff;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    header .logo {
      font-weight: bold;
      font-size: 1.5rem;
      letter-spacing: 2px;
    }
    nav a {
      color: #fff;
      text-decoration: none;
      margin: 0 0.6rem;
      font-weight: 300;
      font-size: 1.4rem;
    }
    nav a:hover {
      text-decoration: none;
    }
    .hero {
      padding: 4rem 2rem;
      text-align: center;
      background: #f4f4f4;
    }
    .hero h1 {
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero img {
      max-width: 300px;
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    section {
      max-width: 990px;
      margin: 3rem auto;
      padding: 0 1rem;
    }
    section h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      border-bottom: 2px solid #000;
      padding-bottom: 0.5rem;
    }
    section p, section ul {
      font-size: 1.6rem;
      color: #333;
    }
    ul {
      list-style-type: disc;
      padding-left: 1.5rem;
    }
    .contact-form {
      max-width: 500px;
      margin: 0 auto 4rem;
      display: flex;
      flex-direction: column;
    }
    .contact-form input,
    .contact-form textarea {
      padding: 0.8rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
      resize: vertical;
      font-family: 'DINProCondensed', sans-serif;

    }
    .contact-form button {
      background: #000;
      color: #fff;
      border: none;
      padding: 1rem;
      font-size: 1.6rem;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s ease;
      font-family: 'DINProCondensed', sans-serif;

    }
    .contact-form button:hover {
      background: #444;
    }
    footer {
      background: #000;
      color: #fff;
      text-align: center;
      padding: 1rem 2rem;
      font-size: 0.9rem;
    }
    .socials {
      margin-bottom: 0.5rem;
    }
    .socials a {
      margin: 0 0.5rem;
      display: inline-block;
    }
    .socials img {
      width: 24px;
      height: 24px;
      vertical-align: middle;
      /*filter: invert(1);*/
      transition: filter 0.3s ease;
    }
    .socials a:hover img {
      filter: invert(1);
    }

    @media (max-width: 600px) {
      header { flex-direction: column; align-items: flex-start; }
      nav { margin-top: 0.5rem; width: 100%; }
      nav a { margin-left: 0; margin-right: 1rem; display: inline-block; }
      .hero h1 { font-size: 1.8rem; }
      .hero p { font-size: 1rem; }
      section h2 { font-size: 1.5rem; }
    }

.banner-slider {
  position: relative;
  width: calc(100% - 40px);
  max-width: 990px;
  aspect-ratio: 16 / 9; /* автоматично съотношение */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 40px;
}

.banner {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.banner.active {
  opacity: 1;
  z-index: 1;
}

.banner-text {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  text-align: center;
  color: white;
  font-size: clamp(1.7rem, 3vw, 4rem);
  line-height: 1.3;
  animation: fadeSlide 1s ease-out forwards;
}

.fadeSlide {
  animation: fadeSlide 0.8s ease forwards;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translate(-50%, 50px);  /* х и у едновременно */
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
	  .para-default {
      text-align: justify;
      font-size: 1.7rem;
      color: #333;
    }

    .para-highlight {
      text-align: justify;
      background: #f4f4f4;
      padding: 2rem;
      border-left: 4px solid #007acc;
      font-size: 1.1rem;
    }

    .para-large {
      text-align: justify;
      font-size: 2rem;
      font-weight: 500;
      color: #111;
    }
    @keyframes glowPulse {
      0%, 100% {
        text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700;
      }
      50% {
        text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
      }
    }
    .glow {
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .glow:hover {
    color: #fff;
    animation: glowPulse 1.8s infinite;
    }

    @keyframes glowPulseImg {
      0%, 100% {
        filter: drop-shadow(0 0 5px #FFD700) drop-shadow(0 0 10px #FFD700);
      }
      50% {
        filter: drop-shadow(0 0 10px #FFD700) drop-shadow(0 0 20px #FFD700);
      }
    }

    .glow-icon {
      transition: all 0.3s ease;
    }

    .glow-icon:hover {
      animation: glowPulseImg 1.8s infinite;
    }
	.lang-switch .glow,
	.lang-switch .glow-icon { transition: all .3s ease; }

	.lang-switch:hover .glow { 
	  color: #fff;
	  animation: glowPulse 1.8s infinite;
	}
	.lang-switch:hover .glow-icon {
	  animation: glowPulseImg 1.8s infinite;
	}
    .submenu-glow::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 80%;
      box-shadow: 0 12px 24px rgba(255, 255, 255, 0.6);
      border-radius: 0 0 0.75rem 0.75rem;
      pointer-events: none;
	  transition: max-height 1s ease, opacity 0.3s ease;
      z-index: -1;
    }

  .spinner {
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5em;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }	  

.dropdown-animate {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
  position: relative;
}

.nav-watermark {
  z-index: 30 !important;
}

.submenu-background {
  z-index: 10 !important;
}

.submenu-link {
  z-index: 20 !important;
  position: relative;
}
.hidden-init {
  display: none !important;
}
  @supports (scrollbar-gutter: stable) {
    html { scrollbar-gutter: stable; }
  }
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
  section, .blur-target {
    -webkit-backdrop-filter: blur(var(--bb, 0px));
    backdrop-filter: blur(var(--bb, 0px));
    transition: backdrop-filter 0.25s linear;
  }
#process .rounded-full {
  will-change: transform;
  transition: transform 400ms ease-out;
  transform: translateZ(0) scale(var(--scale, 1)); /* БАЗА: има вече scale(1) */
}