



    @font-face {
      font-family: 'Product Sans';
      src: url('/fonts/ProductSans-Regular.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
    }

    @font-face {
      font-family: 'Product Sans';
      src: url('/fonts/ProductSans-Bold.ttf') format('truetype');
      font-weight: bold;
      font-style: normal;
    }
    :root { 

      --accent-color: #00d4ff;


    }


    header {
      position: fixed;
      top: 50px;
      left: 50%;
      transform: translateX(-50%);
      width: 60%; 
      z-index: 100;
      background: rgba(32, 32, 32, 0.35); 
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 5px;
      padding: 0;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
      transition: all 0.3s ease;
    }
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 30px;
    }

    .logo img {
      width: auto;
      height: 32px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .logo img:hover {
      transform: scale(1.05);
    }

    nav {
      display: flex;
      gap: 0;
      list-style: none;
      margin: 0;
      padding: 0;
      align-items: center;
    }

    nav > li {
      list-style: none;
      position: relative;
    }

    nav a {
      text-decoration: none;
      font-size: 15px;
      font-weight: 400;
      color: #ffffff;
      transition: all 0.3s ease;
      padding: 10px 20px;
      display: block;
      position: relative;
    }

    nav a:hover {
      color: var(--accent-color);
    }

    nav li.has-dropdown {
      position: relative;
    }

    nav li.has-dropdown > a {
      color: var(--accent-color);
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 15px);
      left: 50%;
      transform: translateX(-50%);
       background: rgba(32, 32, 32, 0.35);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 8px;
      min-width: 200px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
      padding: 8px 0;
      list-style-type: none !important;
    }

    nav li.has-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      top: calc(100% + 10px);
    }

    .dropdown-menu li {
      width: 100%;
    }

    .dropdown-menu a {
      padding: 12px 24px;
      font-size: 14px;
      color: #ffffff;
      transition: all 0.2s ease;
    }

    .dropdown-menu a:hover {
      background: rgba(0, 212, 255, 0.15);
      color: var(--accent-color);
      padding-left: 28px;
    }

    /* Hamburger menu */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      cursor: pointer;
      width: 28px;
      height: 24px;
      gap: 5px;
    }

    .hamburger span {
      width: 100%;
      height: 2.5px;
      background: #ffffff;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }




    .site-footer {
      background-color: #111;
      color: #fff;
      padding: 60px 20px 30px 20px;
      font-family: 'Arial', sans-serif;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      gap: 40px;
    }

    .footer-about {
      flex: 1 1 250px;
      max-width: 300px;
    }

    .footer-about img {
      width: 80px;
      margin-bottom: 15px;
    }

    .footer-about p {
      font-size: 14px;
      line-height: 1.6;
      color: #ccc;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
      flex: 1 1 200px;
    }

    .footer-links h3,
    .footer-contact h3,
    .footer-social h3 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #fff;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 8px;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #007bff;
    }

    .footer-contact p {
      font-size: 14px;
      color: #ccc;
      margin-bottom: 8px;
    }

    .social-icons {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      font-size: 18px;
      color: #ccc;
      background: #222;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      text-decoration: none;
    }

    .footer-social a:hover {
      background: #007bff;
      color: #fff;
      transform: scale(1.1);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      border-top: 1px solid #333;
      padding-top: 15px;
      font-size: 14px;
      color: #aaa;
    }


    @media (max-width: 1300px) {
    header {
      width: 80%;
      top: 30px;
      border-radius: 8px;
    }

    .navbar {
      padding: 6px 25px;
    }

    .logo img {
      height: 30px;
    }

    nav a {
      font-size: 14px;
      padding: 10px 16px;
    }

    .dropdown-menu {
      min-width: 170px;
    }

    .dropdown-menu a {
      padding: 10px 20px;
      font-size: 13px;
    }


  }





    @media (max-width: 998px) {
    .navigation-arrows {
      display: flex;
    }


    header {
      width: 85%;
      top: 25px;
      border-radius: 10px;
    }

    .navbar {
      padding: 6px 20px;
    }

    nav {
      gap: 10px;
    }

    nav a {
      padding: 10px 14px;
      font-size: 14px;
    }

    .dropdown-menu {
      min-width: 150px;
    }

    .dropdown-menu a {
      padding: 10px 18px;
    }
  }





    @media (max-width: 900px) {

       .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-about img {
        margin: 0 auto 10px auto;
      }

      .social-icons {
        justify-content: center;
      }
      
      
    }

    






    @media (max-width: 798px) {

  header {
    width: calc(90% - 20px);
    top: 18px;
    border-radius: 12px;
  }

  .navbar {
    padding: 12px 20px;
    position: relative;
  }

  .hamburger {
    display: flex;
    z-index: 101;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(60, 75, 95, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 15px 0;
    margin-top: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  nav.active {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  nav a {
    padding: 14px 22px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  nav li:last-child a {
    border-bottom: none;
  }

  .dropdown-menu {
    position: static;
    background: rgba(45, 60, 80, 0.95);
    border-radius: 8px;
    padding: 0;
    display: none; 
  }

  nav li.has-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 12px 40px;
    font-size: 14px;
  }

  .dropdown-menu a:hover {
    padding-left: 44px;
  }

   
}






   








    