
 /* ===========================
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 {
     background: var(--bg-color, #fff);
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
     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 img {
     width: 100%;
     height: 200px;
     /* height: 100%; */
     /* object-fit: cover; */
 }

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

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

 .project-content p {
     font-size: 0.95rem;
     margin-bottom: 20px;
 }

 .project-btn {
     display: inline-block;
     padding: 10px 22px;
     background-color: var(--btn, linear-gradient(135deg, #6b11cbaa, #2574fcb7));
     text-decoration: none;
     border-radius: 25px;
     font-size: 0.9rem;
     transition: background 0.3s ease;
     color: #ccc;
     font-weight: 500;
 }

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

 .projects-container {
     display: flex;
     gap: 30px;
     overflow-x: auto;
     padding-bottom: 10px;
     scroll-behavior: smooth;
 }

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

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

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

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

 .live {
     padding: 4px 14px;
     background: rgba(0, 255, 42, 0.53);
     position: absolute;
     top: -12px;
     left: 20px;
     z-index: 999;
     border-radius: 20px;
     font-size: 14px;
     font-weight: 600;
     color: #000000;
 }

 .panding {
     padding: 4px 14px;
     background-color: #ff74e7;
     position: absolute;
     top: -12px;
     left: 20px;
     z-index: 999;
     border-radius: 20px;
     font-size: 14px;
     font-weight: 600;
     color: #000000;
 }





 @media (max-width:1279px) and (min-width:1023px) {
     .section-subtitle {
         margin-bottom: 22px;
     }

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

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

 @media (max-width: 1000px) {
     .projects-section {
         padding: 17px 20px;
     }

     .projects-container {
         gap: 20px;
     }

     .project-card {
         min-width: 280px;
     }

     .project-img {
         height: 130px;
     }

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

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

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

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

     .live {
         padding: 4px 14px;
         position: absolute;
         top: -128px;
         z-index: 999;
         border-radius: 20px;
         font-size: 14px;
         font-weight: 600;
     }

     .live {
         padding: 4px 14px;
         position: absolute;
         top: -128px;
         z-index: 999;
         border-radius: 20px;
         font-size: 14px;
         font-weight: 600;
     }

     .project-btn {
         padding: 6px 16px;
         border-radius: 25px;
         font-size: 0.7rem;
     }

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

     .project-content p {
         font-size: 0.90rem;
         margin-bottom: 20px;
     }

 }









