/* Merged CSS styles with ourwork prefix */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.ourwork-container {
    width: 100%;
    height: 100%;
}

.ourwork-section {
    width: 100vw;
    height: 100vh;
}

.ourwork-hero {
    height: 50vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.ourwork-hero-content {
    width: 100%;
    position: relative;
    margin-left: 50px;
}

.ourwork-heading {
    font-size: clamp(30px, 8vw, 50px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    left: 0;
    transform: none;
    text-align: left;
    color:black;
}

.ourwork-text {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    max-width: 600px;
    opacity: 0.9;
}

.ourwork-card.ourwork-scroll {
    position: relative;
}

.ourwork-footer {
    width: 100%;
    height: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.ourwork-services {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ourwork-hero-section {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.ourwork-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.ourwork-content {
    width: 90%;
    position: relative;
    z-index: 1;
    color: white;
    padding: 20px;
}

.ourwork-content .ourwork-heading {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ourwork-content .ourwork-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

.ourwork-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.ourwork-btn:hover {
    background-color: white;
    color: black;
}

@media (max-width: 768px) {
    .ourwork-hero-content {
        width: 100%;
        padding: 0 30px;
        margin-left: 0;
    }
    
    .ourwork-heading {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .ourwork-text {
        margin-left: 0;
        max-width: 100%;
    }
    
    .ourwork-footer {
        height: 0vh;
    }
    
    /* Our services mobile styles */
    .ourwork-hero-section {
        padding: 30px;
        height: 30vh;
    }
    
    .ourwork-content {
        width: 90%;
        padding: 0;
    }
    
    .ourwork-content .ourwork-heading {
        margin-bottom: 10px;
        font-size: 16px;
    }
    
    .ourwork-content .ourwork-text {
        display: none;
    }
    
    .ourwork-btn {
        padding: 3px 12px;
        font-size: 12px;
    }
}