/*Product Style*/
  .productSecm .productSecm{
      position: relative;
    }
    /* Header */

    .productSecm .logo {
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 1px;
    }

    .productSecm .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
    }
    .productSecm {
      position: relative;
      padding-top: 90px;
      background: #ededed;
  }

    /* Sidebar */
    .productSecm .sidebar {
    position: fixed;
    top: 131px;
    left: 0;
    width: 220px;
    height: 100%;
    background: #ededed;
    padding: 52px 30px 100px 30px;
    box-sizing: border-box;
    z-index: 1;
    transition: all 0.3s ease;
}

    .productSecm .sidebar nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

.productSecm .sidebar nav ul li {
    margin-bottom: 25px;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    color: #7f7f7f;
    text-transform: uppercase;
}

    .productSecm .sidebar nav ul li:hover {
      color: #7f7f7f;
    }

    .productSecm .sidebar nav ul li::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 1px;
      background: #111;
      transition: width 0.3s ease;
    }

    .productSecm .sidebar nav ul li:hover::after,
    .productSecm .sidebar nav ul li.active::after {
      width: 100%;
    }

    .productSecm .sidebar nav ul li.active {
      color: #7f7f7f;
      font-weight: 500;
  }

    /* Main Content */
    .productSecm .content {
      padding: 40px 50px 50px 50px;
    }

.productSecm .projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(29.5%, 1fr));
    gap: 20px;
}

    .productSecm .project {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s ease;
      cursor: pointer;
      margin-bottom: 30px;
    }

    .productSecm .project.show {
      opacity: 1;
      transform: translateY(0);
    }

    .productSecm .project-image {
    width: 100%;
    height: 270px;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    background-color: #f8f8f8;
}

    .productSecm .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }

    .productSecm .project-image:hover img {
      transform: scale(1.05);
    }

    .productSecm .project-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      opacity: 0;
      transition: all 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .productSecm .project-image:hover .project-overlay {
      opacity: 1;
    }

    .productSecm .view-project {
      color: white;
      background: rgba(0, 0, 0, 0.7);
      padding: 10px 20px;
      border-radius: 20px;
      font-size: 14px;
      transform: translateY(10px);
      transition: all 0.3s ease;
      display: none;
    }

   .productSecm .project-image:hover .view-project {
      transform: translateY(0);
    }

    .productSecm .project h3 {
      font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #111;
  }

    .productSecm .project span {
      font-size: 14px;
      color: #333;
    }

    .productSecm .project-category {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
    padding-top: 4px;
}
.productSecm .project-category em {
    font-style: normal;
    padding: 0 5px;
}
    .header {
      padding: 10px 40px;
      background: #ededed;
    }
    .search-icon,
    .header nav ul li a{
      color: #333 !important;
    }
  .menu-toggle {
        display: inline-block;
        color: #7f7f7f;
        font-size: 21px;
        line-height: 9px;
        cursor: pointer;
    }
    .header nav{
      display: none;
    }
    .header nav ul {
      justify-content: flex-end;
    }
    .header nav ul li ul li ul {
        left: auto;
        right: 100%;
    }
    .search-icon{
    display: none;
}
.productSecm .section-title h2 {
    font-size: 16px;
    letter-spacing: 6px;
    font-weight: 400;
    margin-bottom: 50px;
    color: #222;
    text-transform: uppercase;
    text-align: center;
    margin-top: -36px;
}
img.logoWhite{
  display: none;
}
.logo img.grayLogo{
  display: inline-block;
}
.footer {
    z-index: 1;
}
.project {
    position: relative;
}
a.fullClick {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}


    /* Responsive */
    @media (max-width: 1024px) {
      .productSecm .projects {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 40px;
      }
    }

    @media (max-width: 900px) {
           .productSecm .mobile-menu-btn {
        display: block;
      }
      
      .productSecm .sidebar {
        transform: translateX(-100%);
        width: 280px;
        padding: 80px 30px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      }
      
      .productSecm .sidebar.active {
        transform: translateX(0);
      }
      
     .productSecm .content {
        margin-left: 0;
        padding: 80px 30px;
      }
    }

    @media (max-width: 600px) {
      .productSecm .content {
        padding: 70px 20px;
      }      
      .productSecm .projects {
        grid-template-columns: 1fr;
        gap: 40px;
      }      
      .productSecm .project-image {
        height: 250px;
      }
    }