/* Project Management Page Specific Styles */

:root {
    --primary: #1B3A57;
    --secondary: #2C5282;
    --accent: #3182CE;
    --brand-accent: #E53E3E;
    --light-bg: #FFFFFF;
    --text: #1A202C;
    --light-text: #4A5568;
    --max-width: 1200px;
    --bright-blue: #4299E1;
    --bright-orange: #FF6B35;
    --success-green: #38A169;
}

body {
    background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.2)), url('../images/interior-view-steel-factory2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}



.hero-section {
    padding: 8rem 2rem 3rem;
    max-width: var(--max-width);
    margin: auto;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(255,255,255,0.9);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.content-section {
    padding: 5rem 2rem;
    max-width: var(--max-width);
    margin: auto;
}

.intro-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 4rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.intro-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-card p {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.project-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.project-card:nth-child(odd) {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.project-card:nth-child(even) {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
}

.project-card {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.project-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.project-card:hover {
    transform: scale(1.05) translateY(-8px);
    z-index: 10;
    box-shadow: 0 15px 35px rgba(255,255,255,0.25);
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    border-radius: 8px;
}

.project-card:hover i {
    color: maroon !important;
}

.project-icon {
    width: 24px;
    height: 24px;
    margin: 0 auto 1rem;
}

.project-icon svg {
    width: 24px;
    height: 24px;
    fill: #C1440E;
}

.project-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.project-card:hover h3 {
    color: #2C3E50 !important;
}

.project-card p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    text-align: center;
}

.project-card:hover p {
    color: #333 !important;
}

.activities-section {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out;
}

.activities-section h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.activities-section p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.activity-card:nth-child(odd) {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.activity-card:nth-child(even) {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
}

.activity-card {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
}

.activity-card:hover {
    transform: scale(1.05) translateY(-8px);
    z-index: 10;
    box-shadow: 0 15px 35px rgba(255,255,255,0.25);
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    border-radius: 8px;
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.activity-card:hover .activity-icon {
    border-color: #666;
    color: #666;
    background: transparent;
}

.activity-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.activity-card:hover h4 {
    color: #2C3E50 !important;
}

.activity-card p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    text-align: center;
}

.activity-card:hover p {
    color: #333 !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.greenfield-card {
    position: relative;
    overflow: hidden;
}

.brownfield-card {
    position: relative;
    overflow: hidden;
}

.animated-bg-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
}

.animated-bg-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.animated-bg-3 {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}

.animated-bg-4 {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: float 3.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
        background: #1B3A57;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .content-section {
        padding: 1.5rem 1rem;
    }
    
    .intro-card {
        background: #f8f9fa;
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
        box-shadow: none;
        border: 1px solid #ddd;
        animation: none;
    }
    
    .intro-card h3 {
        color: #1B3A57;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .intro-card p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .project-types {
        display: block;
        gap: 0;
        margin-bottom: 1.5rem;
    }
    
    .project-card {
        background: #fff;
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1rem;
        box-shadow: none;
        border: 1px solid #ddd;
        animation: none;
    }
    
    .project-card h3 {
        color: #1B3A57;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .project-card p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .activities-section {
        background: #f8f9fa;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: none;
        border: 1px solid #ddd;
        animation: none;
    }
    
    .activities-section h3 {
        color: #1B3A57;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .activities-section p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .activities-grid {
        display: block;
        gap: 0;
    }
    
    .activity-card {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
        text-align: left;
    }
    
    .activity-icon {
        width: 28px;
        height: 28px;
        color: #C1440E;
        margin: 0 1rem 0 0;
        font-size: 1rem;
        flex-shrink: 0;
        background: none;
        border-radius: 0;
    }
    
    .activity-content {
        flex: 1;
    }
    
    .activity-card h4 {
        color: #1B3A57;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .activity-card p {
        color: #666;
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
    }
}