:root {
    --primary-color: #140f46;
    --secondary-color: #d63a1f;
    --text-color: #333;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
}

.projects-hero {
    padding: 250px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
}

.hero-description {
    color: #140F46CC;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}

.section-title {
    color: var(--secondary-color);
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.5;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 400px));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.project-content {
    padding: 30px;
}

.project-title {
    color: #1a365d;
    margin-bottom: 15px;
    font-family: "Inter";
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
}

.project-customer {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-location {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-description {
    color: #000000CC;
    margin: 0;
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-date {
    color: #6c757d;
    font-size: 14px;
}

.project-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-image {
        height: 250px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-title {
        font-size: 20px;
    }
}