/* Construction Progress Section */
.construction-progress-section {
    display: grid;
    grid-template-columns: 40% 60%;
    height: 100vh;
    background: #ffffff !important;
}

.construction-content {
    padding: 3rem 1.5rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #ffffff;
}

.construction-image {
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:-10px;
    border-radius: 5px;
}

.construction-image img {
    width: 100%;
    height: calc(100% - 3rem);
    object-fit: contain;
    max-height: 95vh;
}

.construction-video.responsive-video {
    width: 100%;
    height: calc(100% - 3rem);
    object-fit: contain;
    max-height: 95vh;
    border-radius: 5px;
    overflow: hidden;
}

.construction-heading {
    margin-bottom: 1.5rem;
    color: black;
}

.construction-paragraph {
    margin-bottom: 2rem;
    max-width: 90%;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .construction-content {
        padding: 2.5rem 1.5rem 2.5rem 2.5rem;
    }
}

@media (max-width: 1200px) {
    .construction-content {
        padding: 2.5rem 1.5rem;
    }
    
    .construction-paragraph {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .construction-image {
        border-radius: 5px;
    }
    
    .construction-video.responsive-video {
        border-radius: 5px;
    }
}

@media (max-width: 991px) {
    .construction-progress-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto;
    }
    
    .construction-content {
        padding: 3rem 1.5rem;
        text-align: center;
        align-items: center;
        order: 2;
    }
    
    .construction-image {
        height: auto;
        margin: 0;
        padding: 1rem;
        border-radius: 0;
    }
    
    .construction-video.responsive-video {
        width: 100%;
        height: auto;
        max-height: 60vh;
        object-fit: cover;
        border-radius: 0;
    }
    
    .construction-paragraph {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .construction-content {
        padding: 1.5rem 1rem;
    }
    
    .construction-image {
        padding: 0;
    }
    
    .construction-video.responsive-video {
        max-height: 50vh;
    }
    
    .construction-paragraph {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .construction-content {
        padding: 1rem;
    }
    
    .construction-paragraph {
        margin-bottom: 1.5rem;
    }
    
    .construction-video.responsive-video {
        max-height: 40vh;
    }
}

@media (max-width: 480px) {
    .construction-content {
        padding: 1rem;
    }
    
    .construction-heading {
        margin-bottom: 1.2rem;
    }
    
    .construction-paragraph {
        margin-bottom: 1.2rem;
    }
    
    .construction-video.responsive-video {
        max-height: 35vh;
    }
} 