  @media (min-width: 1280px) {

      .sidebar {
          display: block;
      }

      .header {
          max-width: 100%;
      }

      header {
          background: transparent;
      }

      .section {
          padding: 100px 1%;
      }

  }

  @media (min-width: 1280px) and (max-width: 1500px) {

      .sidebar,
      .sidebar-footer {
          width: 220px;
      }


      .main,
      footer {
          padding-left: 220px;
      }

      .sidebar-footer {
          padding-left: 10px;
      }

  }

  @media (min-width: 1501px) {

      .main,
      footer {
          padding-left: 250px;
      }

      .section {
          max-width: 1900px;
          margin: auto;
      }

  }


  /* ///////////////////////////////////////////////////////////////////////////// */











  /* ===========================
project
=============================== */

  .projects-section {
      padding: 80px 4%;
      background: var(--bg-color, #f8f9fc);
      color: var(--text-color, #282929);
  }

  .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .section-subtitle {
      margin-bottom: 50px;
  }

  .projects-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
  }

  .project-card {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

  .project-img {
      width: 100%;
      height: 150px;
  }

  .project-img img {
      width: 100%;
      height: 150px;
      object-fit: cover;
  }

  .project-content {
      text-align: left;
      padding: 5px;
  }

  .project-content h2 {
      font-size: 1.4rem;
      margin-bottom: 10px;
  }

  .project-content p {
      font-size: 0.95rem;
      margin-bottom: 10px;
      height: 100px;
      overflow: auto;
      scrollbar-width: none;
  }

  .btn-box {
      display: flex;
      justify-content: space-between;
      padding: 10px;
  }

  .project-btn {
      display: inline-block;
      padding: 5px 10px;
      text-decoration: none;
      border-radius: 10px;
      font-size: 0.9rem;
      transition: background 0.3s ease;
      font-weight: 500;
      border: 1px solid var(--tital);
      color: var(--text-color);
  }

  .project-btn:hover {
      background: linear-gradient(135deg, #2575fc, #6a11cb);
  }





  .projects-container {
      display: flex;
      gap: 30px;
      padding-bottom: 20px;
      overflow-x: auto;
      scrollbar-width: thin;
  }



  .projects-container::-webkit-scrollbar {
      height: 6px;
  }

  .projects-container::-webkit-scrollbar-thumb {
      background: #ccc;
      border-radius: 10px;
  }

  .project-card {
      min-width: 300px;
      flex-shrink: 0;
      width: 300px;
  }

  .live-card {
      position: relative;
      background: #eee;
  }

  .live {
      padding: 4px 14px;
      background: rgb(0, 213, 0);
      position: absolute;
      top: -40px;
      left: 0px;
      z-index: 2;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      color: #000000;
  }

  .panding {
      padding: 4px 14px;
      background: rgb(0, 213, 0);
      background-color: #ff74e7;
      position: absolute;
      top: -40px;
      left: 0px;
      z-index: 2;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      color: #000000;
  }