/* Business & Retail Section */
.office-retail-section {
    padding: 4rem 4rem;
}

.office-retail-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 100%;
    margin: 0 auto;
}

.office-retail-left-block {
    padding-top: 2rem;
}

.office-retail-right-block {
    padding-top: 8rem;
}

.office-retail-content-image {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 5px;
}

.office-retail-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-retail-content-image:hover img {
    transform: scale(1.05);
}

.office-retail-content-text {
    max-width: 90%;
}

.office-retail-content-text .heading-lg {
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: black;
}

.office-retail-content-text .paragraph-text {
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .office-retail-section {
        padding: 6rem 2rem;
    }
    
    .office-retail-right-block {
        padding-top: 6rem;
    }
}

@media (max-width: 1200px) {
    .office-retail-section {
        padding: 5rem 2rem;
    }
    
    .office-retail-right-block {
        padding-top: 4rem;
    }
    
    .office-retail-content-image {
        height: 350px;
    }
}

@media (max-width: 991px) {
    .office-retail-section {
        padding: 4rem 1.5rem;
    }
    
    .office-retail-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .office-retail-left-block,
    .office-retail-right-block {
        padding-top: 0;
        width: 100%;
    }

    .office-retail-content-text {
        max-width: 100%;
        text-align: center;
    }

    .office-retail-content-image {
        height: 400px;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .office-retail-section {
        padding: 3rem 1.5rem;
    }
    
    .office-retail-content-wrapper {
        gap: 2rem;
    }

    .office-retail-content-text {
        text-align: center;
    }

    .office-retail-content-image {
        height: 350px;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    .office-retail-content-text .heading-lg {
        margin-bottom: 1rem;
       
    }
    
    .office-retail-content-text .paragraph-text {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .office-retail-section {
        padding: 2.5rem 1rem;
    }
    
    .office-retail-content-wrapper {
        gap: 1.5rem;
    }
    
    .office-retail-content-text {
        text-align: center;
    }
    
    .office-retail-content-image {
        height: 250px;
        margin-bottom: 1rem;
        width: 100%;
        border-radius: 0;
    }
    
}

@media (max-width: 480px) {
    .office-retail-section {
        padding: 2rem 1rem;
    }
    
    .office-retail-content-text {
        text-align: center;
    }
    
    .office-retail-content-image {
        height: 220px;
        width: 100vw;
        margin-left: -1rem;
        margin-right: -1rem;
        max-width: none;
    }
} 