.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-green);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.tech-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.tech-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.project-header .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.project-meta {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.project-meta i {
    margin-right: 0.3rem;
}

.project-meta span {
    margin-right: 1rem;
}

.cover-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium) !important;
    border-color: var(--primary-green) !important;
}

.project-image {
    height: 200px;
    object-fit: cover;
}

.project-content {
    margin-bottom: 3rem;
}

.project-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-content a {
    font-style: italic;
    text-decoration: underline;
}

.project-content .ordered-list {
    padding-left: 20px;
}

.project-content blockquote {
    border-left: 4px solid var(--primary-green);
    padding-left: 1rem;
    font-style: italic;
    margin: 1.5rem 0;
    color: #555;
}

.side-section {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.side-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .project-title {
        font-size: 2rem;
    }

    .side-section {
        margin-top: 2rem;
    }
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}