
/* Scope of Work Section Styles */
.scope-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f0fa 100%);
    padding: 60px 0;
}

.scope-section h2 {
    color: #605EA1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    position: relative;
    margin-bottom: 2px;
}

hr {
    display: block;
    width: 90px;
    height: 3px;
    background-color: #605EA1;
    margin: 0 auto 20px;
    align-self: center;
}

.scope-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.scope-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.10);
}

.scope-card-img {
    overflow: hidden;
    height: 200px;
}


.scope-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scope-card:hover .scope-card-img img {
    transform: scale(1.1);
}

.scope-card-body {
    padding: 20px;
    background-color: #2A3663;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.scope-card-body:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.08);
    transition: height 0.3s ease;
    z-index: -1;
}

.scope-card:hover .scope-card-body:before {
    height: 100%;
}

.scope-card-title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.scope-card-text {
    color: #eee;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Responsive adjustments for scope cards */
@media (max-width: 992px) {
    .scope-card-img {
        height: 180px;
    }
    
    .scope-card-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .scope-section {
        padding: 40px 0;
    }
    
    .scope-section h2 {
        font-size: 2rem;
    }
}
