/* Other Initiatives Section */
.other-projects {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.other-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23722f37" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23722f37" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="%23722f37" opacity="0.03"/><circle cx="10" cy="60" r="1" fill="%23722f37" opacity="0.03"/><circle cx="90" cy="40" r="1" fill="%23722f37" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.other-projects .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.other-projects .section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #722f37, #daa520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
}

.other-projects .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #daa520, #b8860b);
    border-radius: 2px;
}

.other-projects .section-header p {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.project-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(114, 47, 55, 0.08);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #722f37, #daa520);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #722f37, #daa520);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(114, 47, 55, 0.8), rgba(218, 165, 32, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-image::after {
    opacity: 1;
}

.project-content {
    padding: 2.5rem;
    position: relative;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-content p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.project-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.project-stats span {
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.1), rgba(218, 165, 32, 0.1));
    color: #722f37;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(114, 47, 55, 0.2);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #722f37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.project-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.project-link:hover {
    color: #daa520;
    transform: translateX(5px);
}

.project-link:hover::after {
    transform: translateX(5px);
}

/* Responsive Design for Other Initiatives */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }
    
    .other-projects .section-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .other-projects {
        padding: 5rem 0;
    }
    
    .other-projects .section-header {
        margin-bottom: 3rem;
    }
    
    .other-projects .section-header h2 {
        font-size: 2.5rem;
    }
    
    .other-projects .section-header p {
        font-size: 1.1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-content {
        padding: 2rem;
    }
    
    .project-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .other-projects {
        padding: 4rem 0;
    }
    
    .other-projects .section-header h2 {
        font-size: 2rem;
    }
    
    .other-projects .section-header p {
        font-size: 1rem;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-content h3 {
        font-size: 1.3rem;
    }
    
    .project-stats {
        gap: 0.5rem;
    }
    
    .project-stats span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}