        .projects {
            padding: var(--spacing-lg) var(--spacing-sm);
            background: linear-gradient(135deg, var(--light-bg), var(--lighter-bg));
        }

        .projects-container {
            max-width: var(--container-width);
            margin: 0 auto;
        }

        .section__header {
            text-align: center;
            margin-bottom: var(--spacing-md);
        }
.project-animation{
    animation-delay: 0.1s
}
        .section__title {
            font-size: 2.5rem;
            color: var(--text-dark);
            font-weight: 600;
            position: relative;
            display: inline-block;
            margin-bottom: 10px;
        }

        .section__title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section__subtitle {
            color: var(--text-muted);
            font-size: 1rem;
            margin-top: 10px;
        }

        /* Filters */
        .projects__filters {
            text-align: center;
            margin-bottom: 25px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            margin: 5px;
            border: none;
            cursor: pointer;
            background: var(--bg-light);
            border-radius: var(--border-radius-pill);
            transition: var(--transition);
            font-weight: 500;
            color: var(--text-muted);
        }

        .filter-btn--active,
        .filter-btn:hover {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
        }

        /* Slider */
        .projects__slider {
            position: relative;
            overflow: hidden;
            padding: 10px 0;
        }

        .projects__track {
            display: flex;
            transition: transform 0.6s ease;
            padding: 10px 0;
        }

        .project-card {
            flex: 0 0 calc((100% - 60px) / 3);
            margin: 0 15px;
            background: var(--white);
            border-radius: var(--border-radius-xl);
            overflow: hidden;
            box-shadow: 0 8px 20px var(--shadow-light);
            transition: var(--transition);
            animation: fadeUp 0.8s ease forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px var(--shadow-dark);
        }

        .project-card__image {
            overflow: hidden;
            height: 190px;
        }

        .project-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .project-card:hover .project-card__image img {
            transform: scale(1.05);
        }

        .project-card__content {
            padding: 20px;
            text-align: left;
        }

        .project-card__content h3 {
            margin-bottom: 8px;
            font-size: 1.3rem;
            color: var(--text-dark);
        }

        .project-card__content p {
            color: var(--text-muted);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .project-card__tags {
            margin: 15px 0;
            display: flex;
            flex-wrap: wrap;
        }

        .tag {
            display: inline-block;
            background: var(--tag-bg);
            padding: 5px 12px;
            border-radius: var(--border-radius-pill);
            margin: 0 5px 5px 0;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: var(--border-radius-pill);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
            font-size: 0.9rem;
        }

        .btn:hover {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
        }

        /* Slider Controls */
        .projects__prev, .projects__next {
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            background: var(--white);
            border: none;
            color: var(--primary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .projects__prev:hover, .projects__next:hover {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
        }

        .projects__prev { 
            left: -20px; 
        }
        .projects__next { 
            right: -20px; 
        }

        /* Animation */
        @keyframes fadeUp {
            from { 
                opacity: 0; 
                transform: translateY(30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .project-card {
                flex: 0 0 calc((100% - 40px) / 2);
            }
            
            .projects__prev { 
                left: 10px; 
            }
            .projects__next { 
                right: 10px; 
            }
        }

        @media (max-width: 768px) {
            .project-card {
                flex: 0 0 100%;
                margin: 10px 0;
            }
            
            .projects__prev, .projects__next {
                top: 35%;
                padding: 10px;
                font-size: 1rem;
                width: 40px;
                height: 40px;
            }
            
            .section__title {
                font-size: 2rem;
            }
            
            .projects__filters {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 180px;
                margin: 5px 0;
            }
        }

        @media (max-width: 480px) {
            .projects {
                padding: var(--spacing-md) var(--spacing-sm);
            }
            
            .section__title {
                font-size: 1.8rem;
            }
            
            .project-card__content {
                padding: 15px;
            }
            
            .project-card__content h3 {
                font-size: 1.2rem;
            }
        }

   .project-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}
.footer-bottom{
    justify-content: center;
    align-items: center;
}
.project-modal__content {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  position: relative;
  gap: 20px;
}

.project-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  transition: 0.2s;
}
.project-modal__close:hover {
  color: #f00;
}

.modal-left, .modal-right {
  flex: 1 1 300px;
}

.modal-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.modal-description {
  font-size: 1rem;
  margin-bottom: 15px;
}

.modal-tags {
  margin-bottom: 15px;
}
.modal-tags .tag {
  display: inline-block;
  background: #f0f0f0;
  padding: 5px 10px;
  margin: 3px;
  border-radius: 5px;
  font-size: 0.85rem;
  color: #333;
}

.modal-demo-btn {
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .project-modal__content {
    flex-direction: column;
  }
}
