  body {
        font-family: 'Helvetica CY', Arial, 'Nimbus Sans L', sans-serif;
  font-family: "TT Hoves Pro", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  scroll-behavior: smooth;
  position: relative;
  min-height: 100vh;
      margin: 0;
      background-color: #1e1b3a;
      color: #fff;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100px;
      z-index: 1000;
      background-color: transparent;
      transition: all 0.3s ease;
      
    }

    header.scrolled-desktop {
      background-color: transparent;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      color: #000;
    }

    .logo {
      height: 50px;
      transition: all 0.3s ease;
    }

    .logo.full-logo {
      display: none;
    }

    .logo.favicon {
      display: block;
    }

    nav {
      display: flex;
      gap: 50px;
      align-items: center;
    }

    nav a {
      text-decoration: none;
      color: white;
      font-size: 1.4rem;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: #ff0044;
    }

    .request-estimate {
      padding: 10px 20px;
      background-color: #ff0044;
      color: white;
      font-weight: bold;
      border-radius: 25px;
      border: 2px solid #ff0044;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      transform: translateZ(0);
      font-size: 0.9rem;
      margin-right:9%;
    }

    .request-estimate:hover {
      background-color: transparent;
      color: #ff0044;
      cursor: pointer;
    }

    .hamburger {
      display: none;
      cursor: pointer;
      z-index: 10000;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 5px;
      transition: all 0.3s;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      background-color: #fff;
      color: #000;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 60px 30px 30px 30px;
      gap: 30px;
      font-size: 1.5rem;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      z-index: 9998;
      overflow-y: auto;
    }

    .overlay.open {
      transform: translateX(0);
    }

    .overlay-header {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }

    .overlay-logo {
      font-weight: bold;
      font-size: 1.5rem;
    }

    .close-btn {
      font-size: 5rem;
      cursor: pointer;
      color: black;
      margin-right:15%;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .request-estimate {
        display: none;
      }

      header {
        background-color: transparent;
      }

      header.scrolled-mobile {
        background-color: transparent;
      }

      .logo.full-logo {
        display: block;
      }

      .logo.favicon {
        display: none;
      }

      header.scrolled-mobile .logo.full-logo {
        opacity: 1;
        transform: scale(0);
        pointer-events: none;
      }

      .hamburger.scrolled-mobile {
        position: fixed;
        top: 15px;
        right: 20px;
        background-color: white;
        border-radius: 50%;
        padding: 8px;
      }

      .hamburger.scrolled-mobile div {
        background-color: #ff0044;
      }
    }

    .content {
      margin-top: 90px;
      padding: 0px;
    }

    .section {
      height: 100vh;
      border-bottom: 1px solid #ccc;
    }
    
    
    
    
    
    
    
    
     .footer {
      background-color: #0d0d0d;
      padding: 60px 20px 20px;
      position: relative;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
      border-top: 1px solid #333;
      padding-right:15%;
      font-size: 14px;
    }

    .social-icons a img {
      width: 30px;
      margin-left: 15px;
      filter: brightness(0.8);
      transition: filter 0.3s;
    }

    .social-icons a:hover img {
      filter: brightness(1.2);
      color: #ff0044;
    }

    .scroll-top {
      position: fixed;
      bottom: 80px;
      right: 30px;
      background: #ff0044;
      backdrop-filter: blur(10px);
      padding: 10px 15px;
      font-size: 24px;
      border-radius: 50%;
      cursor: pointer;
      color: #ffffff;
      display: none;
      transition: background 0.3s;
    }

    .scroll-top:hover {
      background: #ffffff30;
    }
    
    
    
    
    
 .mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d0d0d;
  border-top: 1px solid #333;
  z-index: 999;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
}

.mobile-bottom-nav .nav-item {
  color: #fff;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-bottom-nav .nav-item img {
  width: 34px;
  height: 34px;
  margin-bottom: 4px;
  filter: brightness(1.2);
}

@media screen and (min-width: 768px) {
  .mobile-bottom-nav {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .mobile-bottom-nav {
    display: flex;
  }

  body {
    padding-bottom: 60px; /* Prevent content from hiding behind nav */
  }
}
