    /* roboto-condensed-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/main/roboto-condensed-v30-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/main/roboto-condensed-v30-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/main/roboto-condensed-v30-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/main/roboto-condensed-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/main/roboto-condensed-v30-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/main/roboto-condensed-v30-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/main/roboto-condensed-v30-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/main/roboto-condensed-v30-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/main/roboto-condensed-v30-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    #loader {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: #212121;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
      flex-direction: column;
      gap: 50px;
    }
    #loader.hidden {
      opacity: 0;
      pointer-events: none;
    }
    .spinner {
      border: 5px solid rgba(244, 213, 26, 0.2);
      border-top: 5px solid #f4d51a;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      animation: spin 1s linear infinite;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Basic reset */
    body, html {
      word-break: break-word;
      margin: 0;
      padding: 0;
      font-family: "Roboto Condensed", sans-serif;
      color: white;
      background-color: #212121;
      scroll-behavior: smooth;
    }

    /* Header styles */
    nav {
      background: #212121;
      padding: 10px 5px;
      border-bottom: 1px solid #444;
      position: sticky;
      top: 0;
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      flex-wrap: nowrap;
      user-select: none;
    }
    .logo-intro{
          width: 80%;
      }
    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f4d51a;
      cursor: pointer;
      user-select: none;
      flex-shrink: 0;
    }

    ul.nav-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 40px;
      flex-wrap: nowrap;
    }

    ul.nav-links li a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
      padding: 6px 12px;
      transition: color 0.3s ease;
      white-space: nowrap;
      display: block;
      cursor: pointer;
    }

    ul.nav-links li a:hover,
    ul.nav-links li a.active {
      color: #f4d51a;
      font-weight: 700;
    }

    .logo-menu {
        height: 2em;
    }
 
    /* Sections */
    section {
      height: auto !important;
        min-height: 100vh;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 60px 20px;
        position: relative;
        text-align: center;
    }

    video.bg-video {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.8);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .bg-pic {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.8);
      opacity: 0.4;
      transition: opacity 0.3s ease;
    }

    .video-gradient {
      position: absolute;
      bottom: 0; left: 0;
      width: 100%;
      height: 50%;
      pointer-events: none;
      z-index: 1;
    }
    
    .pic-gradient{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 20%;
        pointer-events: none;
        z-index: 1;
        background: linear-gradient(to top, rgba(33, 33, 33, 0), rgba(33, 33, 33, 1));
    }
    .pic-gradient-intro{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 20%;
        pointer-events: none;
        z-index: 1;
        background: linear-gradient(to top, rgba(33, 33, 33, 1), rgba(33, 33, 33, 0));
    }

    .overlay {
      position: relative;
        top: unset;
        transform: unset;
        margin: 0 auto;
        max-width: 80%;
      width: 1200px;
      padding: 20px;
    }

    h1, h2, p {
      margin: 20px 0;
    }
    
    p{
        font-size: 1em;
    }
    h1{
        font-size: 2.5em;
    }
    h2{
        font-size: 2em;
    }
    

    .highlight {
      color: #f4d51a;
    }
    
    .standard-button{
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5;
        border: 1px solid transparent;
        border-radius: 0.25rem;
        background-color: #f4d51a;
        color: #212121;
    }
    
    .darkbg{
        background-color: #212121b0;
    }
        
    .contact-container {
      display: flex;
      height: 80vh;
      padding: 20px;
      box-sizing: border-box;
      gap: 20px;
    }
    
    .contact-chat-window {
      flex: 1;
        background: #2121218f;
        padding: 20px;
        border: 1px solid #ffd100;
        border-radius: 12px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .contact-chat-box {
        flex-grow: 1;
        border: 1px solid #ffd100;
        border-radius: 8px;
        padding: 10px;
        overflow-y: auto;
        margin-bottom: 20px;
    }
    
    /* Message styles */
    .message {
      max-width: 70%;
      margin-bottom: 10px;
      padding: 10px 15px;
      border-radius: 20px;
      font-size: 14px;
      line-height: 1.4;
      clear: both;
    }
    
    .client-message {
        text-align: left;
        font-size: 0.95em;
      background-color: #e0e0e0;
      color: #333;
      float: left;
      border-bottom-left-radius: 4px;
    }
    
    .my-message {
        text-align: right;
        font-size: 0.95em;
      background-color: #f4d51a;
      color: #212121;
      float: right;
      border-bottom-right-radius: 4px;
    }
    
    /* Sliders container - horizontal layout */
    .contact-sliders {
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }
    
    /* Each slider group */
    .contact-slider-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 30%;
    }
    
    .contact-slider-group label {
      margin-bottom: 8px;
      font-weight: 600;
    }
    
    /* Slider style */
    .contact-gauge-slider {
      -webkit-appearance: none;
      width: 100%;
      height: 12px;
      background: linear-gradient(to right, #4caf50, #2196f3);
      border-radius: 6px;
      outline: none;
      transition: background 0.3s;
    }
    
    .contact-gauge-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 20px;
      height: 20px;
      background: #fff;
      border: 2px solid #333;
      border-radius: 50%;
      cursor: pointer;
    }
    
    .contact-gauge-slider::-moz-range-thumb {
      width: 20px;
      height: 20px;
      background: #fff;
      border: 2px solid #333;
      border-radius: 50%;
      cursor: pointer;
    }
    
    .contact-options-button {
        margin: 5px;
        padding: 0.375rem 0.75rem;
        /* font-size: 1rem; */
        /* font-weight: 500; */
        line-height: 1.5;
        border: 1px solid transparent;
        border-radius: 0.25rem;
        background-color: #2121214f;
        color: #212121;
    }
    
    .contact-option-list{
        
    }
    .contact-spinner {
        height: 2em;
        width: 2em;
        border: 5px solid #212121;
        border-top: 5px solid #61cd02;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        }
        
    .footer{
        width: 100%;
        position: absolute;
        bottom: 0px;
    }
    
    
    
        
      .product-grid {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
      }
    
      .product-image-container {
        position: relative;
        width: 30%;
        max-width: 500px;
        cursor: pointer;
        overflow: hidden;
      }
    
      .product-image-container img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        transition: transform 0.3s ease;
      }
    
      .product-overlay {
          
        position: absolute;
        border: 1px solid #f4d51a;
        top: 0;
        left: 0;
        width: 99%;
        height: 99%;
        background: #212121b5;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
      }
    
      .product-image-container.active .product-overlay {
        opacity: 1;
        pointer-events: auto;
      }
    
      .product-overlay-text {
        font-size: 1.2rem;
        padding: 1rem;
        text-align: center;
      }
      
      .product-p{
          font-size: 0.8em;
      }
      
      .product-h{
          font-size: 1.5em;
          font-weight: 600;
      }
      
      .product-button{
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5;
        border: 1px solid transparent;
        border-radius: 0.25rem;
        background-color: #f4d51a;
        color: #212121;
        text-decoration: none !important;
    }
    
      @media (max-width: 768px) {
        .product-grid {
          flex-direction: column;
        }
    
        .product-image-container {
          width: 90%;
          max-width: 250px;
        }
        section{
            padding: 60px 0px;
        }
      }
        
        
        
    
    
        /* Responsive layout: on smaller screens, stack logo and nav vertically */
    @media (max-width: 600px) {
      nav {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
      }
      .logo {
        font-size: 1rem;
        width: 100%;
        margin-bottom: 10px;
      }
      ul.nav-links {
        width: 100%;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
      }
      ul.nav-links li a {
        font-size: 0.8rem;
        padding: 6px 0;
      }
      .logo-menu {
        height: 1.5em;
      }
      
      .client-message {
            font-size: 0.8em;
      }
        
      .my-message {
            font-size: 0.8em;
      }
      .contact-chat-window {
        padding: 10px;
      }
      .contact-container {
        padding: 0px;
      }
      p{
        font-size: 0.9em;
      }
      h1{
        font-size: 2em;
      }
      h2{
        font-size: 1.5em;
      }
      .logo-intro{
          width: 100%;
      }
      .overlay {
        width: 90%;
        max-width: 95%;
        padding: 10px;
      }
      
    }
    
    
    a{
        color: #fff;
    }
    
        .climate-overlay {
        display: flex;
        position: relative;
        top: unset;
        transform: unset;
        margin: 0 auto;
        max-width: 80%;
        width: 1200px;
        padding: 20px;
        flex-direction: row;
        align-content: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    .climate-window {
        min-height: 500px;
        margin: 10px;
        max-width: 400px;
        min-width: 200px;
        width: 30%;
        background: #2121218f;
        padding: 20px;
        border: 1px solid #ffd100;
        border-radius: 12px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .climate-section {
        height: auto !important;
        overflow: visible;
        display: flex;
        align-items: center;
        flex-direction: row;
        padding: 60px 0px;
        position: relative;
        text-align: center;
        flex-wrap: wrap;
        align-content: flex-start;
    }
    .climate-sliders {
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }
    
    /* Each slider group */
    .climate-slider-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
    .climate-outputs{
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        border: 1px solid transparent;
        border-radius: 0.25rem;
        background-color: #f4d51a;
        color: #212121;
        width: 20%;
    }
    
    @media (max-width: 768px) {
        .climate-window{
            width: 90%;
            margin: 0px;
            margin-top: 10px;
        }
        .climate-overlay {
            max-width: 95%;
            padding: 0px;
        }
        
    }
    
    
    
    
    
      .user-extra-links{
        padding-top: 10px;
        display: flex;
        justify-content: space-around;
        font-size: 0.9em;
      }
      .user-section{
         justify-content: flex-start;
      }
      .user-container{
        display: flex;
        padding: 20px;
        box-sizing: border-box;
        gap: 20px;
      }
      .user-chat-window{
        flex: 1;
        background: #2121218f;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      select.userclass,
      input.userclass{
        padding: 5px;
        font-family: "Roboto Condensed", sans-serif;
        border-radius: 5px;
        border: 1px solid #ffd100;
        background-color: #2121218f;
        color: #fff;
        width: 70%;
        max-width: 400px;
      }
      input:focus.userclass{
        background-color: #ffd10029;
      }
      .validatorMessage{
        margin: 5px;
        color: red;
      }
      .validator-error{
        margin: 10px;
        padding: 5px;
        background-color: #753f3fc9;
        border-radius: 5px;
        border: 2px solid #ff0000;
      }
      .validator-neutral{
        padding: 10px;
      }
    
    
    
    